#contact-header {
      background-color: #0a1b43;
      color: #fff;
      padding: 4rem 0;
      text-align: center;

    }

    #contact-header h1 {
      font-weight: bold;
      font-size: 3rem;
      font-family: 'Playfair Display', serif;

    }

    #contact-form {
      background-color: #fff;
      padding: 3rem 1rem;
    }

    #contact-form .form-label {
      font-weight: 600;
      color: #333;
    }

    #contact-form input,
    #contact-form textarea {
      background-color: #f1f1f1;
      border: 1px solid #ccc;
      border-radius: 4px;
      color: #333;
      font-size: 0.95rem;
    }

    #contact-form input::placeholder,
    #contact-form textarea::placeholder {
      color: #999;
    }

    #contact-form textarea {
      resize: none;
    }

    .btn-submit {
      display: inline-block;
      border: 1px solid #ccc;
      background-color: transparent;
      color: #000;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 0.6rem 1.2rem;
      font-size: 1rem;
      transition: 0.3s ease;
    }

    .btn-submit:hover {
      background-color: #0d1b2a;
      color: #fff;
      border-color: #0d1b2a;
    }

    .form-wrapper {
      max-width: 780px;
      margin: 0 auto;
    }

    /* Tombol submit rata kiri sejajar input */
    .btn-submit {
      margin-top: 0.5rem;
    }
    .quote {
      border-top: 1px solid rgba(0, 0, 0, 0.2);
      padding-top: 30px;
      font-size: 1.5rem;
      color: #444;
      font-style: italic;
      margin-bottom: 0.2rem;
      font-family: 'Playfair Display', serif;

    }

    .quote-author {
      margin-top: 20px;
      margin-bottom: 20px;
      padding-bottom: 30px;
      font-size: 0.8rem;
      color: #555;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.2) ;

    }

    @media (max-width: 768px) {

        #contact-header h1,
        #title-section h1 {
            font-size: 2rem;
        }
        .quote {
            font-size: 0.9rem;
        }

        .quote-author {
            font-size: 0.6rem;
        }

    }

    @media (max-width: 576px) {

    }

    @media (max-width: 480px) {
        #contact-header h1,
        #title-section h1 {
            font-size: 1.8rem;
        }
    }