 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #FAFAF8;
      color: #2C2C2C;
      overflow-x: hidden;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      width: 100%;
      scroll-behavior: smooth;
    }

    .app-wrapper {
      width: 100%;
      min-height: 100%;
    }

    /* Typography */
    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      letter-spacing: -0.5px;
    }

    /* Navbar */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(250, 250, 248, 0.98);
      backdrop-filter: blur(20px);
      z-index: 2000;
      padding: 25px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar.scrolled {
      padding: 20px 60px;
      box-shadow: 0 4px 30px rgba(0,0,0,0.03);
    }

    .logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 300;
      letter-spacing: 2px;
      color: #2C2C2C;
      position: relative;
      cursor: pointer;
    }

    .logo::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 30px;
      height: 1px;
      background: linear-gradient(90deg, #C9A87C, transparent);
    }

    .nav-menu {
      display: flex;
      list-style: none;
      gap: 45px;
      align-items: center;
    }

    .nav-link {
      color: #2C2C2C;
      text-decoration: none;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.5px;
      position: relative;
      padding: 5px 0;
      transition: color 0.3s;
      cursor: pointer;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background: #C9A87C;
      transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .nav-link:hover {
      color: #C9A87C;
    }

    .nav-auth {
      display: flex;
      gap: 15px;
      align-items: center;
    }

    .btn {
      padding: 12px 30px;
      border: 1px solid #2C2C2C;
      background: transparent;
      color: #2C2C2C;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      text-decoration: none;
      display: inline-block;
    }

    .btn:hover {
      background: #2C2C2C;
      color: #FAFAF8;
      transform: translateY(-2px);
    }

    .btn-gold {
      border: 1px solid #C9A87C;
      color: #C9A87C;
    }

    .btn-gold:hover {
      background: #C9A87C;
      color: #FAFAF8;
    }

    .btn-filled {
      background: #2C2C2C;
      color: #FAFAF8;
    }

    .btn-filled:hover {
      background: transparent;
      color: #2C2C2C;
    }

    .user-display {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 18px;
      border: 1px solid rgba(201, 168, 124, 0.3);
      cursor: pointer;
      transition: all 0.3s;
    }

    .user-display:hover {
      border-color: #C9A87C;
      background: rgba(201, 168, 124, 0.05);
    }

    .user-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, #C9A87C, #A8906F);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 13px;
      font-weight: 600;
    }

    .user-name {
      font-size: 13px;
      font-weight: 500;
      color: #2C2C2C;
      letter-spacing: 0.5px;
    }

    /* Hero Section */
    .hero {
      height: 100%;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), 
                  url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&q=90');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      text-align: center;
      color: white;
      padding: 180px 40px 120px;
      width: 100%;
    }

    .hero-content {
      max-width: 900px;
      animation: fadeInUp 1.2s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero h1 {
      font-size: 72px;
      margin-bottom: 25px;
      line-height: 1.2;
      font-weight: 300;
      letter-spacing: -1px;
    }

    .hero p {
      font-size: 16px;
      letter-spacing: 3px;
      margin-bottom: 50px;
      opacity: 0.95;
      font-weight: 300;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .hero .btn {
      border-color: rgba(255,255,255,0.8);
      color: white;
    }

    .hero .btn:hover {
      background: white;
      color: #2C2C2C;
      border-color: white;
    }

    /* Section Styles */
    section {
      padding: 120px 60px;
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
    }

    .section-header {
      text-align: center;
      margin-bottom: 80px;
      position: relative;
    }

    .section-label {
      font-size: 12px;
      letter-spacing: 3px;
      color: #C9A87C;
      font-weight: 600;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .section-header h2 {
      font-size: 56px;
      color: #2C2C2C;
      margin-bottom: 25px;
      font-weight: 300;
    }

    .section-header p {
      font-size: 16px;
      color: #6B6B6B;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.8;
      font-weight: 300;
    }

    .section-divider {
      width: 60px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #C9A87C, transparent);
      margin: 25px auto;
    }

    /* About Section */
    .about-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-image {
      width: 100%;
      height: 600px;
      background: url('https://images.unsplash.com/photo-1600607687644-c7171b42498f?w=800&q=80');
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }

    .about-image::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
    }

    .about-content h3 {
      font-size: 42px;
      margin-bottom: 30px;
      color: #2C2C2C;
      font-weight: 300;
    }

    .about-content p {
      font-size: 15px;
      line-height: 1.9;
      color: #6B6B6B;
      margin-bottom: 25px;
      font-weight: 300;
    }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 40px;
    }

    .about-feature {
      padding: 25px;
      border: 1px solid rgba(0,0,0,0.08);
      transition: all 0.4s;
    }

    .about-feature:hover {
      border-color: #C9A87C;
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    }

    .about-feature h4 {
      font-size: 18px;
      margin-bottom: 10px;
      color: #2C2C2C;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
    }

    .about-feature p {
      font-size: 13px;
      color: #8B8B8B;
      margin: 0;
    }

    .timeline {
      margin-top: 50px;
      padding-top: 50px;
      border-top: 1px solid rgba(0,0,0,0.08);
    }

    .timeline-item {
      display: flex;
      gap: 30px;
      margin-bottom: 30px;
      align-items: flex-start;
    }

    .timeline-year {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      color: #C9A87C;
      font-weight: 300;
      min-width: 100px;
    }

    .timeline-content h5 {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      margin-bottom: 8px;
      color: #2C2C2C;
    }

    .timeline-content p {
      font-size: 14px;
      color: #8B8B8B;
      margin: 0;
    }

    /* Services Grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 35px;
    }

    .service-card {
      padding: 50px 40px;
      border: 1px solid rgba(0,0,0,0.08);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      background: white;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 1px;
      background: #C9A87C;
      transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .service-card:hover::before {
      width: 100%;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 60px rgba(0,0,0,0.08);
      border-color: rgba(201, 168, 124, 0.3);
    }

    .service-icon {
      font-size: 40px;
      margin-bottom: 25px;
      display: block;
    }

    .service-card h3 {
      font-size: 22px;
      margin-bottom: 15px;
      color: #2C2C2C;
      font-weight: 400;
    }

    .service-card p {
      font-size: 14px;
      line-height: 1.8;
      color: #6B6B6B;
      font-weight: 300;
    }

    /* Portfolio Grid */
    .portfolio-filter {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-bottom: 60px;
      flex-wrap: wrap;
    }

    .filter-btn {
      background: transparent;
      border: none;
      font-size: 13px;
      letter-spacing: 1.5px;
      color: #8B8B8B;
      cursor: pointer;
      padding: 10px 20px;
      transition: all 0.3s;
      position: relative;
      text-transform: uppercase;
      font-weight: 500;
    }

    .filter-btn.active,
    .filter-btn:hover {
      color: #C9A87C;
    }

    .filter-btn::after {
      content: '';
      position: absolute;
      bottom: 5px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 1px;
      background: #C9A87C;
      transition: width 0.3s;
    }

    .filter-btn.active::after,
    .filter-btn:hover::after {
      width: 40px;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
      gap: 30px;
    }

    .portfolio-item {
      position: relative;
      height: 480px;
      overflow: hidden;
      cursor: pointer;
      background: #f5f5f5;
    }

    .portfolio-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .portfolio-item:hover img {
      transform: scale(1.08);
    }

    .portfolio-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 60%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 40px;
      opacity: 0;
      transition: opacity 0.5s;
    }

    .portfolio-item:hover .portfolio-overlay {
      opacity: 1;
    }

    .portfolio-category {
      font-size: 11px;
      letter-spacing: 2px;
      color: #C9A87C;
      margin-bottom: 10px;
      text-transform: uppercase;
      font-weight: 600;
    }

    .portfolio-title {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      color: white;
      margin-bottom: 8px;
      font-weight: 300;
    }

    .portfolio-location {
      font-size: 13px;
      color: rgba(255,255,255,0.8);
      font-weight: 300;
    }

    /* Team Section */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
    }

    .team-member {
      text-align: center;
      transition: transform 0.4s;
    }

    .team-member:hover {
      transform: translateY(-10px);
    }

    .team-photo {
      width: 100%;
      height: 380px;
      background: #e5e5e5;
      margin-bottom: 25px;
      position: relative;
      overflow: hidden;
      filter: grayscale(100%);
      transition: filter 0.5s;
    }

    .team-member:hover .team-photo {
      filter: grayscale(0%);
    }

    .team-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .team-photo::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 40%;
      background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    }

    .team-name {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      margin-bottom: 8px;
      color: #2C2C2C;
      font-weight: 400;
    }

    .team-title {
      font-size: 13px;
      color: #C9A87C;
      letter-spacing: 1.5px;
      margin-bottom: 10px;
      text-transform: uppercase;
      font-weight: 500;
    }

    .team-experience {
      font-size: 13px;
      color: #8B8B8B;
      margin-bottom: 15px;
    }

    .team-specialization {
      font-size: 12px;
      color: #6B6B6B;
      font-style: italic;
    }

    /* Testimonials */
    .testimonials-slider {
      max-width: 900px;
      margin: 0 auto;
    }

    .testimonial-card {
      padding: 60px;
      text-align: center;
      border: 1px solid rgba(0,0,0,0.08);
      background: white;
    }

    .testimonial-text {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      line-height: 1.7;
      color: #2C2C2C;
      margin-bottom: 35px;
      font-weight: 300;
      font-style: italic;
    }

    .testimonial-author {
      font-size: 15px;
      font-weight: 500;
      color: #2C2C2C;
      margin-bottom: 5px;
    }

    .testimonial-project {
      font-size: 13px;
      color: #C9A87C;
      letter-spacing: 1px;
    }

    .testimonial-rating {
      width: 80px;
      height: 1px;
      background: #C9A87C;
      margin: 25px auto 0;
    }

    /* Blog Grid */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
      gap: 50px;
    }

    .blog-card {
      cursor: pointer;
      transition: transform 0.4s;
    }

    .blog-card:hover {
      transform: translateY(-8px);
    }

    .blog-image {
      width: 100%;
      height: 320px;
      background: #e5e5e5;
      margin-bottom: 30px;
      overflow: hidden;
      position: relative;
    }

    .blog-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s;
    }

    .blog-card:hover .blog-image img {
      transform: scale(1.05);
    }

    .blog-category {
      font-size: 11px;
      letter-spacing: 2px;
      color: #C9A87C;
      margin-bottom: 15px;
      text-transform: uppercase;
      font-weight: 600;
    }

    .blog-title {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      margin-bottom: 15px;
      color: #2C2C2C;
      font-weight: 400;
      line-height: 1.4;
    }

    .blog-excerpt {
      font-size: 14px;
      line-height: 1.8;
      color: #6B6B6B;
      margin-bottom: 20px;
      font-weight: 300;
    }

    .blog-meta {
      display: flex;
      align-items: center;
      gap: 20px;
      font-size: 12px;
      color: #8B8B8B;
    }

    .read-more {
      color: #C9A87C;
      text-decoration: none;
      font-size: 13px;
      letter-spacing: 1px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: gap 0.3s;
    }

    .read-more:hover {
      gap: 15px;
    }

    /* Contact Section */
    .contact-container {
      max-width: 1000px;
      margin: 0 auto;
      background: white;
      padding: 80px;
      border: 1px solid rgba(0,0,0,0.08);
    }

    .contact-form {
      margin-bottom: 60px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-bottom: 30px;
    }

    .form-group {
      margin-bottom: 30px;
    }

    .form-group label {
      display: block;
      font-size: 12px;
      letter-spacing: 1.5px;
      color: #2C2C2C;
      margin-bottom: 12px;
      text-transform: uppercase;
      font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 15px 20px;
      border: 1px solid rgba(0,0,0,0.1);
      background: #FAFAF8;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      transition: all 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #C9A87C;
      background: white;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 150px;
    }

    .contact-info {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      padding-top: 60px;
      border-top: 1px solid rgba(0,0,0,0.08);
    }

    .contact-info-item {
      text-align: center;
    }

    .contact-info-icon {
      font-size: 32px;
      margin-bottom: 20px;
    }

    .contact-info-item h4 {
      font-size: 14px;
      margin-bottom: 10px;
      color: #2C2C2C;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
    }

    .contact-info-item p {
      font-size: 13px;
      color: #6B6B6B;
      font-weight: 300;
    }

    /* Footer */
    footer {
      background: #2C2C2C;
      color: rgba(255,255,255,0.8);
      padding: 100px 60px 40px;
      width: 100%;
    }

    .footer-main {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
      gap: 60px;
      margin-bottom: 80px;
    }

    .footer-brand {
      padding-right: 40px;
    }

    .footer-brand h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      margin-bottom: 20px;
      color: white;
      font-weight: 300;
      letter-spacing: 2px;
    }

    .footer-brand p {
      font-size: 14px;
      line-height: 1.8;
      margin-bottom: 30px;
      font-weight: 300;
    }

    .footer-social {
      display: flex;
      gap: 15px;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255,255,255,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
      font-size: 16px;
      text-decoration: none;
      color: rgba(255,255,255,0.8);
    }

    .social-icon:hover {
      border-color: #C9A87C;
      background: #C9A87C;
      color: white;
      transform: translateY(-3px);
    }

    .footer-section h4 {
      font-size: 14px;
      letter-spacing: 2px;
      margin-bottom: 25px;
      color: white;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      text-transform: uppercase;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section li {
      margin-bottom: 12px;
    }

    .footer-section a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      font-size: 13px;
      transition: all 0.3s;
      display: inline-block;
      font-weight: 300;
      cursor: pointer;
    }

    .footer-section a:hover {
      color: #C9A87C;
      padding-left: 5px;
    }

    .footer-newsletter {
      background: rgba(255,255,255,0.03);
      padding: 30px;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .footer-newsletter h4 {
      font-size: 14px;
      margin-bottom: 20px;
    }

    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .newsletter-input {
      padding: 14px 18px;
      border: 1px solid rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.05);
      color: white;
      font-size: 13px;
      font-family: 'Inter', sans-serif;
    }

    .newsletter-input:focus {
      outline: none;
      border-color: #C9A87C;
    }

    .newsletter-input::placeholder {
      color: rgba(255,255,255,0.4);
    }

    .newsletter-message {
      font-size: 12px;
      padding: 10px;
      margin-top: 10px;
      display: none;
    }

    .newsletter-message.success {
      background: rgba(201, 168, 124, 0.2);
      color: #C9A87C;
    }

    .newsletter-message.info {
      background: rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.8);
    }

    .footer-bottom {
      max-width: 1400px;
      margin: 0 auto;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.1);
      text-align: center;
    }

    .footer-bottom p {
      font-size: 12px;
      color: rgba(255,255,255,0.5);
      margin-bottom: 8px;
      font-weight: 300;
    }

    .footer-tagline {
      font-family: 'Playfair Display', serif;
      font-size: 14px;
      color: #C9A87C;
      font-style: italic;
      font-weight: 300;
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.85);
      z-index: 3000;
      align-items: center;
      justify-content: center;
      padding: 20px;
      overflow-y: auto;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: white;
      max-width: 500px;
      width: 100%;
      max-height: 90%;
      overflow-y: auto;
      position: relative;
      animation: modalSlide 0.4s ease;
    }

    @keyframes modalSlide {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .modal-header {
      padding: 50px 50px 30px;
      border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    .modal-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      color: #2C2C2C;
      margin-bottom: 10px;
      font-weight: 300;
    }

    .modal-header p {
      font-size: 13px;
      color: #8B8B8B;
      font-weight: 300;
    }

    .modal-close {
      position: absolute;
      top: 25px;
      right: 25px;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(0,0,0,0.1);
      background: transparent;
      cursor: pointer;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      color: #2C2C2C;
    }

    .modal-close:hover {
      background: #2C2C2C;
      color: white;
      transform: rotate(90deg);
    }

    .modal-body {
      padding: 50px;
    }

    .auth-toggle {
      text-align: center;
      margin-top: 30px;
      font-size: 13px;
      color: #8B8B8B;
    }

    .auth-toggle a {
      color: #C9A87C;
      text-decoration: none;
      font-weight: 500;
      cursor: pointer;
    }

    .auth-toggle a:hover {
      text-decoration: underline;
    }

    .policy-modal .modal-content {
      max-width: 900px;
    }

    .policy-content {
      padding: 50px;
      line-height: 1.9;
    }

    .policy-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: 48px;
      margin-bottom: 20px;
      color: #2C2C2C;
      font-weight: 300;
    }

    .policy-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      margin: 50px 0 25px;
      color: #2C2C2C;
      font-weight: 300;
    }

    .policy-content h3 {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      margin: 35px 0 20px;
      color: #2C2C2C;
      font-weight: 400;
    }

    .policy-content p {
      margin-bottom: 20px;
      color: #4A4A4A;
      font-size: 14px;
      font-weight: 300;
    }

    .policy-content ul,
    .policy-content ol {
      margin: 20px 0 20px 30px;
      color: #4A4A4A;
    }

    .policy-content li {
      margin-bottom: 12px;
      font-size: 14px;
      font-weight: 300;
    }

    .policy-highlight {
      background: #F9F6F0;
      border-left: 2px solid #C9A87C;
      padding: 30px;
      margin: 30px 0;
    }

    .policy-date {
      color: #8B8B8B;
      font-style: italic;
      margin-bottom: 40px;
      font-size: 13px;
    }

    /* Notification */
    .notification {
      position: fixed;
      bottom: 40px;
      right: 40px;
      background: white;
      padding: 25px 30px;
      border: 1px solid rgba(0,0,0,0.08);
      box-shadow: 0 15px 50px rgba(0,0,0,0.1);
      display: none;
      align-items: center;
      gap: 20px;
      z-index: 4000;
      animation: slideIn 0.5s ease;
      max-width: 400px;
    }

    @keyframes slideIn {
      from {
        transform: translateX(500px);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    .notification-icon {
      font-size: 28px;
    }

    .notification-content h4 {
      font-size: 15px;
      margin-bottom: 5px;
      color: #2C2C2C;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
    }

    .notification-content p {
      font-size: 13px;
      color: #6B6B6B;
      font-weight: 300;
    }

    /* 3D Visuals Section */
    .visuals-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }

    .visual-item {
      position: relative;
      height: 500px;
      overflow: hidden;
      background: #e5e5e5;
    }

    .visual-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s;
    }

    .visual-item:hover img {
      transform: scale(1.1);
    }

    .visual-label {
      position: absolute;
      bottom: 30px;
      left: 30px;
      background: rgba(255,255,255,0.95);
      padding: 15px 25px;
      font-size: 13px;
      letter-spacing: 1.5px;
      color: #2C2C2C;
      font-weight: 500;
      text-transform: uppercase;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .about-container,
      .contact-info,
      .footer-main {
        grid-template-columns: 1fr;
      }

      .visuals-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .navbar {
        padding: 20px 30px;
      }

      .nav-menu {
        display: none;
      }

      .hero h1 {
        font-size: 48px;
      }

      section {
        padding: 80px 30px;
      }

      .section-header h2 {
        font-size: 40px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .contact-container {
        padding: 50px 30px;
      }

      footer {
        padding: 60px 30px 30px;
      }
    }
  