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

      body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        min-height: 100vh;
        overflow-x: hidden;
      }

      /* Header */
      .header {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        animation: slideDown 0.5s ease;
      }

      @keyframes slideDown {
        from {
          transform: translateY(-100%);
        }
        to {
          transform: translateY(0);
        }
      }

      .header-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        font-size: 2rem;
        font-weight: bold;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-decoration: none;
        animation: pulse 2s infinite;
      }

      @keyframes pulse {
        0%,
        100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.05);
        }
      }

      .nav-menu {
        display: flex;
        list-style: none;
        gap: 30px;
      }

      .nav-menu a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
        position: relative;
      }

      .nav-menu a::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        transition: width 0.3s;
      }

      .nav-menu a:hover::after {
        width: 100%;
      }

      /* Hero Section */
      .hero-section {
        margin-top: 80px;
        padding: 100px 20px 50px;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
      }

      .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: -50%;
        width: 200%;
        height: 100%;
        background: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.1) 1px,
          transparent 1px
        );
        background-size: 50px 50px;
        animation: moveBackground 30s linear infinite;
      }

      @keyframes moveBackground {
        0% {
          transform: translate(0, 0);
        }
        100% {
          transform: translate(50px, 50px);
        }
      }

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

      .hero-title {
        font-size: 3.5rem;
        margin-bottom: 20px;
        animation: fadeInUp 1s ease;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
      }

      .hero-subtitle {
        font-size: 1.3rem;
        opacity: 0.95;
        animation: fadeInUp 1s ease 0.2s both;
      }

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

      /* Contact Container */
      .contact-container {
        max-width: 1200px;
        margin: -50px auto 80px;
        padding: 0 20px;
        position: relative;
        z-index: 2;
      }

      .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        background: white;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        animation: slideUp 0.8s ease;
      }

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

      /* Contact Form Section */
      .contact-form-section {
        padding: 60px;
      }

      .form-header {
        margin-bottom: 40px;
      }

      .form-title {
        font-size: 2rem;
        color: #333;
        margin-bottom: 10px;
      }

      .form-subtitle {
        color: #666;
        font-size: 1.1rem;
      }

      .contact-form {
        display: flex;
        flex-direction: column;
        gap: 25px;
      }

      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }

      .form-group {
        position: relative;
        animation: fadeIn 0.5s ease both;
      }

      .form-group:nth-child(1) {
        animation-delay: 0.1s;
      }
      .form-group:nth-child(2) {
        animation-delay: 0.2s;
      }
      .form-group:nth-child(3) {
        animation-delay: 0.3s;
      }
      .form-group:nth-child(4) {
        animation-delay: 0.4s;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateX(-20px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #555;
        font-weight: 500;
        font-size: 0.95rem;
      }

      .form-group input,
      .form-group textarea,
      .form-group select {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: #f8f9fa;
      }

      .form-group input:focus,
      .form-group textarea:focus,
      .form-group select:focus {
        outline: none;
        border-color: #667eea;
        background: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
      }

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

      .form-group i {
        position: absolute;
        right: 15px;
        top: 42px;
        color: #999;
        transition: color 0.3s;
      }

      .form-group:focus-within i {
        color: #667eea;
      }

      .checkbox-group {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
      }

      .checkbox-group input[type="checkbox"] {
        width: 20px;
        height: 20px;
        cursor: pointer;
      }

      .checkbox-group label {
        cursor: pointer;
        color: #666;
      }

      .submit-btn {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 15px 40px;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .submit-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
        transition: left 0.5s;
      }

      .submit-btn:hover::before {
        left: 0;
      }

      .submit-btn span {
        position: relative;
        z-index: 1;
      }

      .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
      }

      /* Contact Info Section */
      .contact-info-section {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 60px;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow: hidden;
      }

      .contact-info-section::before {
        content: "📧";
        position: absolute;
        font-size: 200px;
        opacity: 0.1;
        top: -50px;
        right: -50px;
        animation: float 6s ease-in-out infinite;
      }

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

      .info-header {
        margin-bottom: 40px;
      }

      .info-title {
        font-size: 2rem;
        margin-bottom: 10px;
      }

      .info-subtitle {
        opacity: 0.9;
        font-size: 1.1rem;
      }

      .contact-cards {
        display: flex;
        flex-direction: column;
        gap: 25px;
      }

      .contact-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 25px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        gap: 20px;
        transition: all 0.3s ease;
        animation: slideInRight 0.8s ease both;
      }

      .contact-card:nth-child(1) {
        animation-delay: 0.1s;
      }
      .contact-card:nth-child(2) {
        animation-delay: 0.2s;
      }
      .contact-card:nth-child(3) {
        animation-delay: 0.3s;
      }
      .contact-card:nth-child(4) {
        animation-delay: 0.4s;
      }

      @keyframes slideInRight {
        from {
          opacity: 0;
          transform: translateX(30px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      .contact-card:hover {
        transform: translateX(10px);
        background: rgba(255, 255, 255, 0.2);
      }

      .contact-icon {
        width: 50px;
        height: 50px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: #667eea;
        flex-shrink: 0;
      }

      .contact-details h3 {
        margin-bottom: 5px;
        font-size: 1.2rem;
      }

      .contact-details p {
        opacity: 0.9;
        font-size: 0.95rem;
      }

      .contact-details a {
        color: white;
        text-decoration: none;
        transition: opacity 0.3s;
      }

      .contact-details a:hover {
        opacity: 0.8;
      }

      /* Social Links */
      .social-links {
        margin-top: 40px;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
      }

      .social-links h3 {
        margin-bottom: 20px;
      }

      .social-icons {
        display: flex;
        gap: 15px;
      }

      .social-icon {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        font-size: 1.2rem;
        transition: all 0.3s ease;
      }

      .social-icon:hover {
        background: white;
        color: #667eea;
        transform: translateY(-5px) scale(1.1);
      }

      /* FAQ Section */
      .faq-section {
        max-width: 1000px;
        margin: 80px auto;
        padding: 0 20px;
      }

      .faq-header {
        text-align: center;
        margin-bottom: 50px;
      }

      .faq-title {
        font-size: 2.5rem;
        color: white;
        margin-bottom: 10px;
        animation: fadeIn 1s ease;
      }

      .faq-subtitle {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.2rem;
        animation: fadeIn 1s ease 0.2s both;
      }

      .faq-container {
        background: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
      }

      .faq-item {
        margin-bottom: 20px;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 20px;
        animation: fadeInUp 0.8s ease both;
      }

      .faq-item:nth-child(1) {
        animation-delay: 0.1s;
      }
      .faq-item:nth-child(2) {
        animation-delay: 0.2s;
      }
      .faq-item:nth-child(3) {
        animation-delay: 0.3s;
      }
      .faq-item:nth-child(4) {
        animation-delay: 0.4s;
      }
      .faq-item:nth-child(5) {
        animation-delay: 0.5s;
      }

      .faq-item:last-child {
        border-bottom: none;
      }

      .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding: 10px 0;
        transition: color 0.3s;
      }

      .faq-question:hover {
        color: #667eea;
      }

      .faq-question h3 {
        font-size: 1.2rem;
        color: #333;
        margin: 0;
      }

      .faq-icon {
        font-size: 1.2rem;
        color: #667eea;
        transition: transform 0.3s;
      }

      .faq-item.active .faq-icon {
        transform: rotate(45deg);
      }

      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        padding: 0;
      }

      .faq-item.active .faq-answer {
        max-height: 300px;
        padding: 15px 0;
      }

      .faq-answer p {
        color: #666;
        line-height: 1.6;
      }

      /* Map Section */
      .map-section {
        background: white;
        padding: 80px 0;
        position: relative;
      }

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

      .map-header {
        text-align: center;
        margin-bottom: 50px;
      }

      .map-title {
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 10px;
      }

      .map-subtitle {
        color: #666;
        font-size: 1.2rem;
      }

      .map-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 40px;
        align-items: center;
      }

      .map-frame {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        height: 400px;
        background: #f0f0f0;
        position: relative;
        animation: fadeIn 1s ease;
      }

      .map-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        font-size: 1.5rem;
      }

      .location-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .location-card {
        background: #f8f9fa;
        padding: 25px;
        border-radius: 15px;
        border-left: 4px solid #667eea;
        transition: all 0.3s ease;
        animation: slideInRight 0.8s ease both;
      }

      .location-card:hover {
        transform: translateX(10px);
        box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
      }

      .location-card h4 {
        color: #333;
        margin-bottom: 10px;
      }

      .location-card p {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
      }

      /* Office Hours */
      .hours-section {
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        padding: 60px 20px;
        margin: 80px 0;
      }

      .hours-container {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
      }

      .hours-title {
        font-size: 2rem;
        color: #333;
        margin-bottom: 30px;
      }

      .hours-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
      }

      .hours-card {
        background: white;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        animation: bounceIn 0.8s ease both;
      }

      .hours-card:nth-child(1) {
        animation-delay: 0.1s;
      }
      .hours-card:nth-child(2) {
        animation-delay: 0.2s;
      }
      .hours-card:nth-child(3) {
        animation-delay: 0.3s;
      }

      @keyframes bounceIn {
        0% {
          opacity: 0;
          transform: scale(0.3);
        }
        50% {
          opacity: 1;
          transform: scale(1.05);
        }
        100% {
          transform: scale(1);
        }
      }

      .hours-card h4 {
        color: #667eea;
        margin-bottom: 10px;
      }

      .hours-card p {
        color: #333;
        font-weight: 600;
      }

      .hours-note {
        color: #666;
        font-style: italic;
      }

      /* Newsletter Section */
      .newsletter-section {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 60px 20px;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
      }

      .newsletter-content {
        max-width: 600px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }

      .newsletter-title {
        font-size: 2rem;
        margin-bottom: 15px;
      }

      .newsletter-subtitle {
        margin-bottom: 30px;
        opacity: 0.95;
      }

      .newsletter-form {
        display: flex;
        gap: 15px;
        max-width: 500px;
        margin: 0 auto;
      }

      .newsletter-input {
        flex: 1;
        padding: 15px 20px;
        border: none;
        border-radius: 50px;
        font-size: 1rem;
      }

      .newsletter-btn {
        padding: 15px 30px;
        background: white;
        color: #667eea;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .newsletter-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      }

      /* Footer */
      .footer {
        background: #333;
        color: white;
        padding: 50px 20px 20px;
      }

      .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 30px;
      }

      .footer-section h3 {
        margin-bottom: 20px;
      }

      .footer-section ul {
        list-style: none;
      }

      .footer-section ul li {
        margin-bottom: 10px;
      }

      .footer-section a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s;
      }

      .footer-section a:hover {
        color: #667eea;
      }

      .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid #555;
        color: #ccc;
      }

      /* Success Modal */
      .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        z-index: 10000;
        animation: fadeIn 0.3s ease;
      }

      .modal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        border-radius: 20px;
        padding: 40px;
        text-align: center;
        max-width: 400px;
        animation: zoomIn 0.5s ease;
      }

      @keyframes zoomIn {
        from {
          opacity: 0;
          transform: translate(-50%, -50%) scale(0.5);
        }
        to {
          opacity: 1;
          transform: translate(-50%, -50%) scale(1);
        }
      }

      .modal-icon {
        font-size: 4rem;
        color: #4caf50;
        margin-bottom: 20px;
      }

      .modal-title {
        font-size: 1.5rem;
        color: #333;
        margin-bottom: 10px;
      }

      .modal-message {
        color: #666;
        margin-bottom: 20px;
      }

      .modal-btn {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
      }

      .modal-btn:hover {
        transform: scale(1.05);
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .nav-menu {
          display: none;
        }

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

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

        .contact-form-section {
          padding: 40px 30px;
        }

        .contact-info-section {
          padding: 40px 30px;
        }

        .form-row {
          grid-template-columns: 1fr;
        }

        .map-grid {
          grid-template-columns: 1fr;
        }

        .newsletter-form {
          flex-direction: column;
        }

        .hours-grid {
          grid-template-columns: 1fr;
        }
      }
