        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #0f172a;
            --secondary-blue: #1e293b;
            --accent-blue: #334155;
            --primary-gold: #d4a574;
            --gold-light: #e6c39a;
            --white: #ffffff;
            --light-gray: #f1f5f9;
            --text-dark: #1e293b;
            --text-light: #64748b;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            width: 100%;
            background: var(--primary-blue);
            box-shadow: 0 2px 20px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-text {
            font-size: 1.6rem;
            font-weight: 600;
            color: #ffffff;
            padding: 5px 15px;
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
            letter-spacing: 1px;
        }

        .logo {
            height: 60px;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: var(--primary-gold);
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            color: var(--white);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--accent-blue) 100%);
            color: var(--white);
            padding: 150px 2rem 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: var(--primary-gold);
            opacity: 0.08;
            border-radius: 50%;
            top: -300px;
            right: -200px;
            animation: float 20s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: var(--primary-gold);
            opacity: 0.06;
            border-radius: 50%;
            bottom: -150px;
            left: -100px;
            animation: float 10s ease-in-out infinite reverse;
        }

        .hero-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .pattern-circle {
            position: absolute;
            border: 2px solid var(--primary-gold);
            border-radius: 50%;
            opacity: 0.1;
        }

        .pattern-circle:nth-child(1) {
            width: 150px;
            height: 150px;
            top: 20%;
            left: 10%;
            animation: float 12s ease-in-out infinite;
        }

        .pattern-circle:nth-child(2) {
            width: 100px;
            height: 100px;
            top: 60%;
            right: 15%;
            animation: float 10s ease-in-out infinite 2s;
        }

        .pattern-circle:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: 25%;
            left: 20%;
            animation: float 14s ease-in-out infinite 1s;
        }

        .pattern-circle:nth-child(4) {
            width: 120px;
            height: 120px;
            top: 40%;
            right: 25%;
            animation: float 16s ease-in-out infinite 3s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            font-weight: 300;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
            color: #000000;
            font-weight: 700;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(212, 165, 116, 0.5);
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--primary-gold) 100%);
        }

        .btn-talk {
            color: #000000 !important;
            padding: 0.6rem 1.8rem !important;
            font-weight: 700;
        }
        
        .btn-talk:hover {
            color: #000000 !important;
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary-blue);
        }

        /* Section Styles */
        section {
            padding: 100px 2rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 4rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Updated Vision Section */
        .vision {
            background: linear-gradient(to bottom, var(--light-gray), var(--white));
            position: relative;
            overflow: hidden;
        }

        .vision::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: var(--primary-gold);
            opacity: 0.05;
            border-radius: 50%;
            top: -100px;
            right: -50px;
        }

        .vision-content {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .vision-image-container {
            position: relative;
        }

        .vision-image-wrapper {
            width: 500px;
            height: 500px;
            border-radius: 50%;
            overflow: hidden;
            border: 15px solid var(--white);
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            position: relative;
            z-index: 5;
        }

        .vision-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
        }

        .vision-decorative-dots {
            position: absolute;
            bottom: -30px;
            right: -30px;
            display: grid;
            grid-template-columns: repeat(10, 10px);
            gap: 8px;
            z-index: 1;
        }

        .vision-decorative-dots span {
            width: 10px;
            height: 10px;
            background: var(--primary-gold);
            border-radius: 50%;
            opacity: 0.4;
        }

        .vision-cards-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .vision-mission-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .vision-mission-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .card-icon-wrapper {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .card-icon-wrapper i {
            font-size: 2rem;
            color: var(--primary-blue);
        }

        .vision-mission-card h3 {
            color: var(--primary-blue);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .vision-mission-card p {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 1rem;
        }

        .impact-section {
            margin-top: 3rem;
            text-align: center;
            padding: 2rem;
            background: rgba(255,255,255,0.5);
            border-radius: 15px;
        }

        .impact-section h3 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .impact-section p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* About Section */
        .about {
            background: var(--white);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            color: var(--primary-blue);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            color: var(--text-light);
        }

        .about-highlights {
            list-style: none;
            margin-top: 2rem;
        }

        .about-highlights li {
            padding: 0.8rem 0;
            padding-left: 2rem;
            position: relative;
            color: var(--text-dark);
        }

        .about-highlights li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-gold);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
         /* Services Section */
        .services {
            background: var(--light-gray);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        .service-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-top: 4px solid var(--primary-gold);
            cursor: pointer;
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .service-card.expanded {
            transform: translateY(0);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .service-summary {
            color: var(--text-light);
            line-height: 1.7;
        }

        .service-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, margin-top 0.5s ease, padding-top 0.5s ease;
            margin-top: 0;
            padding-top: 0;
        }

        .service-card.expanded .service-details {
            max-height: 3000px;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid var(--light-gray);
            overflow: visible;
        }

        .service-details ul {
            list-style: none;
            margin-top: 1rem;
            margin: 0;
            padding: 0;
        }

        .service-details ul li {
            padding: 0.8rem 0;
            padding-left: 2rem;
            position: relative;
            color: var(--text-dark);
            line-height: 1.6;
        }

        .service-details ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-gold);
            font-size: 1.1rem;
            font-weight: bold;
            display: block;
        }

        .service-toggle {
            position: absolute;
            top: 2.5rem;
            right: 2.5rem;
            font-size: 1.2rem;
            color: var(--primary-gold);
            transition: transform 0.3s ease;
        }

        .service-card.expanded .service-toggle {
            transform: rotate(180deg);
        }

        .services-cta {
            text-align: center;
            margin-top: 3rem;
        }

        /* Consultation Section */
        .consultation {
            background: var(--white);
            text-align: center;
        }

        .calendly-container {
            max-width: 900px;
            margin: 0 auto;
            background: var(--light-gray);
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .calendly-btn {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
            color: var(--primary-blue);
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .calendly-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--primary-gold) 100%);
        }

        /* Contact Section */
        .contact {
            background: var(--primary-blue);
            color: var(--white);
        }

        .contact .section-title {
            color: var(--white);
        }

        .contact .section-subtitle {
            color: rgba(255,255,255,0.8);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-form {
            background: var(--white);
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary-blue);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-gold);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
      .contact-item a{
            text-decoration: none;
            color: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            font-weight: bold;
        }
      .contact-item a:hover{
            text-decoration: none;
            color: var(--primary-gold);
            font-weight: bold;
        }        

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .contact-item i {
            font-size: 2rem;
            color: var(--primary-gold);
            margin-top: 0.3rem;
        }

        .contact-item h3 {
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .contact-item p {
            opacity: 0.9;
        }

        /* Footer */
        footer {
            background: #0d1430;
            color: var(--white);
            padding: 2rem;
            text-align: center;
        }

        footer p {
            opacity: 0.8;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: var(--white);            
            border-radius: 15px;
            max-width: 600px;
            width: 90%;
            position: relative;
        }

        /* Calendly modal: centered popup */
        #calendlyModal {
            background: rgba(0,0,0,0.75);
            align-items: center;
            justify-content: center;
            padding: 2rem;
            cursor: pointer;
        }

        /* Modal content container */
        #calendlyModal .modal-content {
            max-width: 900px;
            width: 100%;
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            cursor: default;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
            animation: modalAppear 0.3s ease-out;
            display: flex;
            flex-direction: column;
	    height:700px;
        }

        /* Header styling */
        #calendlyModal .modal-header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            padding: 1.25rem 1.5rem;
            position: relative;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        #calendlyModal .modal-header h2 {
            color: var(--white);
            margin: 0;
            font-size: 1.5rem;
            font-weight: 600;
            flex: 1;
            text-align: center;
        }

        #calendlyModal .close-modal-form {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255,255,255,0.2);
            border: none;
            color: var(--white);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        #calendlyModal .close-modal-form:hover {
            background: rgba(255,255,255,0.3);
            transform: rotate(90deg);
        }

        /* Body section for Calendly widget */
        #calendlyModal .modal-body {
            flex: 1;
            min-height: 0;
            background: var(--white);
        }

        @keyframes modalAppear {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* make Calendly widget fill available modal area */
        .calendly-inline-widget {
            width: 100% !important;
            height: 700px !important;
            min-height: 400px !important;
            display: block;
        }

        /* Responsive: smaller screens make widget taller and modal full width */
        @media (max-width: 900px) {
            #calendlyModal .modal-content {
                max-width: 720px;
            }
            .calendly-inline-widget {
                height: 640px !important;
            }
        }

        @media (max-width: 600px) {
            #calendlyModal .modal-content {
                width: 100%;
                border-radius: 8px;
            }
            .calendly-inline-widget {
                height: calc(100vh - 140px) !important;
            }
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 2rem;
            cursor: pointer;
            color: var(--text-light);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Floating Contact Button */
        .floating-contact-btn {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
            color: var(--primary-blue);
            padding: 20px 15px;
            border: none;
            border-radius: 10px 0 0 10px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            z-index: 1500;
            box-shadow: -5px 5px 20px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            writing-mode: vertical-rl;
            transform: rotate(-180deg);
            text-orientation: mixed;
            letter-spacing: 2px;
        }

        .floating-contact-btn:hover {
            padding-right: 20px;
            box-shadow: -8px 8px 25px rgba(0,0,0,0.4);
        }

        .floating-contact-btn i {
            display: block;
            writing-mode: horizontal-tb;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        /* Sliding Contact Form */
        .sliding-contact-form {
            position: fixed;
            right: -450px;
            top: 0;
            width: 450px;
            height: 100vh;
            background: var(--white);
            box-shadow: -5px 0 30px rgba(0,0,0,0.3);
            z-index: 1600;
            transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            overflow-y: auto;
        }

        .sliding-contact-form.active {
            right: 0;
        }

        .sliding-form-header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: var(--white);
            padding: 2rem;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .sliding-form-header h2 {
            margin-bottom: 0.5rem;
            font-size: 1.8rem;
        }

        .sliding-form-header p {
            opacity: 0.9;
            font-size: 0.9rem;
        }

        .close-sliding-form {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: rgba(255,255,255,0.2);
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-sliding-form:hover {
            background: rgba(255,255,255,0.3);
            transform: rotate(90deg);
        }

        .sliding-form-content {
            padding: 2rem;
        }

        .sliding-form-content .form-group {
            margin-bottom: 1.5rem;
        }

        .sliding-form-content .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary-blue);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .sliding-form-content .form-group input,
        .sliding-form-content .form-group textarea {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .sliding-form-content .form-group input:focus,
        .sliding-form-content .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
        }

        .sliding-form-content .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .sliding-form-content .btn-primary {
            width: 100%;
            padding: 1rem;
            font-size: 1rem;
        }

        .form-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1550;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .form-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .social-media-section {
            margin-top: 2rem;
        }

        .social-media-section h4 {
            color: var(--white);
            font-size: 1rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(212, 165, 116, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 165, 116, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-gold);
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: var(--primary-gold);
            transform: translate(-50%, -50%);
            transition: all 0.4s ease;
        }

        .social-icon:hover::before {
            width: 100%;
            height: 100%;
        }

        .social-icon i {
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
            border-color: var(--primary-gold);
        }

        .social-icon:hover i {
            color: var(--primary-blue);
            transform: scale(1.1);
        }


/* Policy Modals - Clean Paragraph Format */
.policy-modal-content {
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 0;
}

.policy-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px 15px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.policy-header h2 {
    margin-bottom: 0.2rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.policy-date {
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 400;
}

.policy-content {
    padding: 1.5rem 2rem 2rem 2rem;
    background: var(--white);
    line-height: 1.8;
}

.policy-content p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: justify;
}

.policy-content p:first-child {
    margin-bottom: 1.2rem;
}

.policy-content p strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.policy-modal-content .close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.3rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 20;
}

.policy-modal-content .close-modal:hover {
    background: var(--primary-gold);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .policy-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .policy-header {
        padding: 1.2rem 1.5rem;
        padding-right: 3.5rem;
    }
    
    .policy-header h2 {
        font-size: 1.4rem;
    }
    
    .policy-content {
        padding: 1.2rem 1.5rem 1.5rem 1.5rem;
    }
    
    .policy-content p {
        text-align: left;
    }
    
    .policy-modal-content .close-modal {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
        top: 0.8rem;
        right: 0.8rem;
    }
}

        /* Responsive */
        @media (max-width: 968px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: var(--primary-blue);
                width: 100%;
                padding: 2rem;
                box-shadow: 0 5px 20px rgba(0,0,0,0.3);
                transition: left 0.3s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .mobile-menu {
                display: block;
                background: none;
                border: none;
                cursor: pointer;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .vision-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .vision-image-wrapper {
                margin: 0 auto;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
            }

            .sliding-contact-form {
                width: 100%;
                right: -100%;
            }
            .cta-buttons {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .vision-image-wrapper {
                width: 300px;
                height: 300px;
            }
        }
