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

  :root {
    --shuptrine-blue: #8BA9B5;
    --shuptrine-blue-light: #B5CDD6;
    --shuptrine-blue-dark: #5A7A87;
    --cream: #FAF8F5;
    --warm-gray: #E8E4DF;
    --text-dark: #3A3632;
    --text-muted: #7A756E;
    --warm-brown: #A89080;
    --soft-gold: #C4A962;
    --success-green: #7A9A7A;
  }

  body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    min-height: 100vh;
  }

  /* Header */
  header {
    height: 70px;
    background: white;
    border-bottom: 1px solid var(--warm-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 50;
  }

  .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--shuptrine-blue);
    letter-spacing: 2px;
    text-decoration: none;
  }

  .logo span {
    font-size: 16px;
    color: var(--text-muted);
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    margin-left: 15px;
    letter-spacing: 1px;
  }

  nav {
    display: flex;
    gap: 8px;
  }

  nav a {
    background: transparent;
    border: 1px solid var(--warm-gray);
    padding: 10px 20px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-decoration: none;
  }

  nav a:hover, nav a.active {
    border-color: var(--shuptrine-blue);
    color: var(--shuptrine-blue);
    background: rgba(139, 169, 181, 0.05);
  }

  /* Hero Section */
  .hero {
    text-align: center;
    padding: 100px 40px 80px;
    background: white;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--shuptrine-blue-light) 0%, transparent 70%);
    opacity: 0.15;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--warm-brown) 0%, transparent 70%);
    opacity: 0.1;
  }

  .hero-content {
    position: relative;
    z-index: 1;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 3px;
  }

  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    color: var(--shuptrine-blue);
    margin-bottom: 25px;
  }

  .hero p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.9;
  }

  /* Main Content */
  main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 100px;
  }

  /* Contact Section - Two Column */
  .contact-section {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
  }

  /* Form Card */
  .form-card {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.06);
  }

  .form-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 30px;
  }

  .form-group {
    margin-bottom: 25px;
  }

  .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }

  .form-group label .required {
    color: var(--warm-brown);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--warm-gray);
    border-radius: 12px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: white;
    transition: all 0.3s ease;
    outline: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--shuptrine-blue);
    box-shadow: 0 0 0 3px rgba(139, 169, 181, 0.1);
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--text-muted);
  }

  .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A756E' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 50px;
    cursor: pointer;
  }

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

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

  /* File Upload */
  .file-upload {
    position: relative;
    border: 2px dashed var(--warm-gray);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .file-upload:hover {
    border-color: var(--shuptrine-blue-light);
    background: rgba(139, 169, 181, 0.03);
  }

  .file-upload input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
  }

  .file-upload-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .file-upload-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--shuptrine-blue);
    fill: none;
    stroke-width: 1.5;
  }

  .file-upload-text {
    font-size: 14px;
    color: var(--text-muted);
  }

  .file-upload-text strong {
    color: var(--shuptrine-blue);
  }

  .file-upload-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
  }

  /* Submit Button */
  .submit-btn {
    width: 100%;
    padding: 18px 40px;
    background: var(--shuptrine-blue);
    border: none;
    border-radius: 30px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
  }

  .submit-btn:hover {
    background: var(--shuptrine-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 169, 181, 0.3);
  }

  .submit-btn:active {
    transform: translateY(0);
  }

  /* Success Message */
  .success-message {
    display: none;
    text-align: center;
    padding: 60px 40px;
  }

  .success-message.show {
    display: block;
  }

  .success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--success-green) 0%, #5A7A5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .success-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    fill: none;
    stroke-width: 2;
  }

  .success-message h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 15px;
  }

  .success-message p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
  }

  /* Contact Info Sidebar */
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .info-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.05);
  }

  .info-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }

  .info-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--shuptrine-blue-light) 0%, var(--shuptrine-blue) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .info-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 1.5;
  }

  .info-card-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text-dark);
  }

  .info-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
  }

  .info-card a {
    color: var(--shuptrine-blue);
    text-decoration: none;
    transition: color 0.2s;
  }

  .info-card a:hover {
    color: var(--shuptrine-blue-dark);
  }

  /* Response Time Card */
  .response-card {
    background: linear-gradient(135deg, var(--shuptrine-blue-dark) 0%, var(--shuptrine-blue) 100%);
    color: white;
  }

  .response-card .info-card-icon {
    background: rgba(255,255,255,0.2);
  }

  .response-card .info-card-header h3 {
    color: white;
  }

  .response-card p {
    color: rgba(255,255,255,0.85);
  }

  .response-time {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 15px;
  }

  .response-time-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    line-height: 1;
  }

  .response-time-unit {
    font-size: 16px;
    opacity: 0.8;
  }

  /* Social Links */
  .social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
  }

  .social-link {
    width: 44px;
    height: 44px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .social-link:hover {
    background: var(--shuptrine-blue);
  }

  .social-link:hover svg {
    stroke: white;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 1.5;
    transition: stroke 0.3s;
  }

  /* FAQ Section */
  .faq-section {
    margin-top: 40px;
  }

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

  .faq-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--shuptrine-blue);
    margin-bottom: 15px;
  }

  .faq-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 15px;
  }

  .faq-header p {
    font-size: 16px;
    color: var(--text-muted);
  }

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

  .faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
  }

  .faq-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  }

  .faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s;
  }

  .faq-question:hover {
    color: var(--shuptrine-blue);
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .faq-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
  }

  .faq-item.active .faq-icon {
    background: var(--shuptrine-blue);
  }

  .faq-item.active .faq-icon svg {
    stroke: white;
    transform: rotate(180deg);
  }

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

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

  .faq-answer-content {
    padding: 0 30px 25px;
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-muted);
  }

  /* Footer CTA */
  .footer-cta {
    margin-top: 80px;
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.05);
  }

  .footer-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 15px;
  }

  .footer-cta p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 25px;
  }

  .footer-cta-links {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .footer-cta-link {
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .footer-cta-link.primary {
    background: var(--shuptrine-blue);
    color: white;
  }

  .footer-cta-link.primary:hover {
    background: var(--shuptrine-blue-dark);
  }

  .footer-cta-link.secondary {
    background: transparent;
    border: 1px solid var(--warm-gray);
    color: var(--text-muted);
  }

  .footer-cta-link.secondary:hover {
    border-color: var(--shuptrine-blue);
    color: var(--shuptrine-blue);
  }

  /* Responsive */
  @media (max-width: 1000px) {
    .contact-section {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .contact-info {
      flex-direction: row;
      flex-wrap: wrap;
    }

    .info-card {
      flex: 1;
      min-width: 280px;
    }

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

  @media (max-width: 768px) {
    .hero h1 {
      font-size: 38px;
    }

    .hero-subtitle {
      font-size: 20px;
    }

    main {
      padding: 50px 25px;
    }

    .form-card {
      padding: 35px 25px;
    }

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

    .contact-info {
      flex-direction: column;
    }

    .info-card {
      min-width: auto;
    }

    .faq-header h2 {
      font-size: 32px;
    }

    .footer-cta-links {
      flex-direction: column;
      align-items: center;
    }
  }

  @media (max-width: 600px) {
    header {
      padding: 0 15px;
    }

    nav {
      display: none;
    }

    .hero {
      padding: 60px 20px;
    }
  }