 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #fff;
        }

        /* Header */
        header {
            background: #fff;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo img {
    height: 48px;       /* control logo size */
    width: auto;        /* keep proportions */
    display: block;
}


        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: #d4a520;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #d4a520, #f4c542);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .contact-btn {
            background: linear-gradient(135deg, #d4a520 0%, #f4c542 100%);
            color: #fff;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(212, 165, 32, 0.3);
        }

        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 165, 32, 0.4);
        }

        .page-hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #2d3250 100%);
            padding: 150px 2rem 80px;
            text-align: center;
            color: white;
        }

        .page-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #f4c542;
        }

        .page-hero p {
            font-size: 1.2rem;
            color: #ddd;
            max-width: 700px;
            margin: 0 auto;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .contact-section {
            padding: 80px 2rem;
            background: #fff;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
            margin-top: 3rem;
        }

        .contact-info {
            background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: fit-content;
        }

        .contact-info h2 {
            color: #1a1a2e;
            margin-bottom: 2rem;
            font-size: 2rem;
        }

        .info-item {
            margin-bottom: 2.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #f0f0f0;
        }

        .info-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .info-item h3 {
            color: #d4a520;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .info-item p {
            color: #666;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .info-item a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            margin: 0.5rem 0;
        }

        .info-item a:hover {
            color: #d4a520;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .social-btn {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(135deg, #d4a520 0%, #f4c542 100%);
            color: #fff;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(212, 165, 32, 0.3);
        }

        .social-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 165, 32, 0.5);
        }

        .contact-form-container {
            background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .contact-form-container h2 {
            color: #1a1a2e;
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #333;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            background: #fff;
            color: #333;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f4c542;
            box-shadow: 0 0 0 3px rgba(244, 197, 66, 0.1);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            background: linear-gradient(135deg, #d4a520 0%, #f4c542 100%);
            color: #fff;
            box-shadow: 0 4px 15px rgba(212, 165, 32, 0.3);
            width: 100%;
            margin-top: 1rem;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(212, 165, 32, 0.4);
        }

        .map-section {
            padding: 80px 2rem;
            background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
        }

        .map-section h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #1a1a2e;
            margin-bottom: 3rem;
        }

        .map-container {
            background: #f0f0f0;
            border-radius: 20px;
            overflow: hidden;
            height: 450px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
        }

        .map-placeholder h3 {
            color: #666;
            margin-bottom: 1rem;
            font-size: 2rem;
        }

        .map-placeholder p {
            color: #888;
            text-align: center;
            max-width: 600px;
            line-height: 1.8;
        }

        .hours-section {
            padding: 80px 2rem;
            background: #fff;
        }

        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .hours-card {
            background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            border: 2px solid #f0f0f0;
            transition: all 0.3s;
        }

        .hours-card:hover {
            border-color: #f4c542;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(212, 165, 32, 0.15);
        }

        .hours-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hours-card h3 {
            color: #1a1a2e;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .hours-card p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .faq-section {
            padding: 80px 2rem;
            background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
        }

        .faq-section h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #1a1a2e;
            margin-bottom: 3rem;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: #fff;
            margin-bottom: 1.5rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border: 2px solid #f0f0f0;
        }

        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .faq-question:hover {
            background: #fafafa;
        }

        .faq-question h3 {
            color: #1a1a2e;
            font-size: 1.2rem;
            margin: 0;
        }

        .faq-toggle {
            color: #d4a520;
            font-size: 1.5rem;
            font-weight: bold;
            transition: transform 0.3s;
        }

        .faq-answer {
            padding: 0 2rem 1.5rem;
            color: #666;
            line-height: 1.8;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        footer {
            background: #0a0a1a;
            color: #ddd;
            padding: 3rem 2rem 1.5rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #f4c542;
            margin-bottom: 1rem;
        }

        .footer-section p,
        .footer-section a {
            color: #bbb;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #f4c542;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #888;
        }

        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 2rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            .map-container {
                height: 300px;
            }
        }