        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f8fafc 0%, rgba(16, 185, 129, 0.05) 100%);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.05;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .location-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(16, 185, 129, 0.1);
            color: #059669;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
        }

        .hero h1 {
            font-size: 64px;
            font-weight: 700;
            color: #111;
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .hero .highlight {
            color: #059669;
        }

        .hero p {
            font-size: 20px;
            color: #666;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: #061e55;
            color: white;
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
        }

        .btn-primary:hover {
            background: transparent;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(5, 150, 105, 0.4);
            border: 2px solid #061e55;
            color: #061e55;
        }

        .btn-outline {
            background: transparent;
            color: #061e55;
            border: 2px solid #061e55;
        }

        .btn-outline:hover {
            background: #061e55;
            color: white;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, rgba(16, 185, 129, 0.05) 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-header h2 {
            font-size: 36px;
            font-weight: 700;
            color: #111;
            margin-bottom: 16px;
        }

        .section-header p {
            font-size: 18px;
            color: #666;
            max-width: 500px;
            margin: 0 auto;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .contact-card {
            background: white;
            border-radius: 16px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            border: 1px solid #f1f5f9;
        }

        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .card-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #061e55, #1e3a8a);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            color: white;
        }

        .contact-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: #111;
            margin-bottom: 16px;
        }

        .contact-card p {
            color: #666;
            line-height: 1.6;
        }

        .contact-card a {
            color: #666;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .contact-card a:hover {
            color: #059669;
        }

        .phone-numbers {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .phone-numbers a {
            font-size: 18px;
        }

        .hours-list {
            text-align: left;
            max-width: 200px;
            margin: 0 auto;
        }

        .hours-list p {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .closed {
            color: #dc2626 !important;
        }

        /* Map Section */
        .map-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, rgba(16, 185, 129, 0.05) 100%);
        }

        .map-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .map-container {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .map-container iframe {
            width: 100%;
            height: 450px;
            border: none;
        }

        .location-info h2 {
            font-size: 36px;
            font-weight: 700;
            color: #111;
            margin-bottom: 32px;
        }

        .info-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-bottom: 32px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            
        }

        .info-dot {
            
            width: 12px;
            height: 12px;
            background: #1e3a8a;
            border-radius: 50%;
            margin-top: 6px;
            flex-shrink: 0;
        }

        .info-item h4 {
            margin-top: 4px;
            font-weight: 600;
            color: #111;
            margin-bottom: 4px;
        }

        .info-item p {
            color: #666;
            text-align: justify;
        }

        .directions-card {
            background: rgba(5, 150, 105, 0.05);
            border: 1px solid rgba(5, 150, 105, 0.2);
            border-radius: 12px;
            padding: 24px;
        }

        .directions-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .directions-header h3 {
            font-weight: 600;
            color: #111;
        }

        .directions-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .directions-list p {
            font-size: 14px;
            color: #666;
        }

        .directions-list strong {
            color: #111;
        }


        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .animate-fade-up {
            animation: fadeInUp 0.8s ease-out;
        }

        .animate-float {
            animation: float 6s ease-in-out infinite;
        }

        /* Responsive */
        @media (max-width: 768px) {

            .hero h1 {
                font-size: 40px;
            }

            .hero p {
                font-size: 16px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .map-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

        }