/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #374151;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: #C19A5B;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #C19A5B;
    color: white;
}

.btn-primary:hover {
    background-color: #A67F47;
    transform: scale(1.05);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}


.logo-img {
  height: 80px;        /* anciennement ~40px → plus présent */
  width: auto;
  transition: height 0.3s ease;
}
@media (max-width: 768px) {
  .logo-img {
    height: 70px;
  }
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: #374151;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #C19A5B;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #C19A5B;
}

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

.social-link {
    color: #374151;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #C19A5B;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #374151;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

/* ==========================================
   SECTIONS
   ========================================== */
.services-section,
.about-section,
.why-section,
.zone-section,
.contact-section {
    padding: 5rem 0;
}
.service-intro {
    font-size: 0.95rem;
    color:rgba(255, 255, 255, 0.85);
    margin: 0.5rem 0 0.75rem;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4)
}

.services-section {
    background: #F9FAFB;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #374151;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6B7280;
}

/* ==========================================
   SERVICES GRID
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    position: relative;
    height:700px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0,0,0,0.15);
}

.service-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3));*/
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.25)
    );
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.service-list {
    list-style: none;
    margin-bottom: 1rem;
}

.service-list li {
    padding: 0.25rem 0;
    font-size: 0.875rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.45);
    color: rgba(255,255,255,0.9);
}

.service-list li::before {
    content: "• ";
    color: #C19A5B;
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-more {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-link {
    color: white;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #C19A5B;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why-section {
    background: linear-gradient(to bottom, #F9FAFB, white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0,0,0,0.15);
    border: 2px solid #C19A5B;
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(193, 154, 91, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #C19A5B;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: #C19A5B;
    color: white;
}

.why-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
}

/* ==========================================
   SERVICE ZONE
   ========================================== */
.service-area-section {
    padding-top: 80px;
}

.area-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.area-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

/* Bloc villes avec image */
.area-cities-bg {
    position: relative;
    padding: 60px 0;
    background-image: url('../assets/images/sections/section-zone-service.jpg');
    background-size: cover;
    background-position: center top;
}

.area-cities-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.villes-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.villes-col h4 {
    color: #E8C98A;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.villes-col p {
    font-size: 0.9rem;
    color:#F2F2F2;
    font-weight: 400;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}
.villes-col {
    background: rgba(0, 0, 0, 0.25);
    padding: 20px;
    border-radius: 6px;
    backdrop-filter: blur(2px); /* moderne */
}
.villes-col h4::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: #C19A5B;
    margin: 8px auto 0;
}
.zone-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px rgba(0,0,0,0.15);
}

.zone-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.zone-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.zone-content {
    position: relative;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.zone-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.zone-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.zone-cities {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.city-item {
    color: white;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.city-item:hover {
    color: #C19A5B;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    background: #F9FAFB;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 1.5rem;
}

.contact-link {
    color: #C19A5B;
    font-size: 1.125rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #A67F47;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C19A5B;
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.contact-reassurance {
    list-style: none;      /* enlève les puces */
    padding-left: 0;       /* enlève l’indentation */
    margin: 30px 0;        /* ajuste l’espace si besoin */
}
.contact-reassurance li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #555;
}

.contact-form .form-row {
  margin-bottom: 32px;
}

.contact-form .form-group label {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
  display: block;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  border-radius: 6px;
  padding: 14px 16px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
}
.zone-text-box {
  background: rgba(255, 255, 255, 0.92); /* lisibilité maximale */
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.zone-title {
  margin-bottom: 15px;
  color: #1a1a1a;
}

.zone-description {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 10px;
}

.zone-note {
  font-size: 0.95rem;
  color: #666;
}
/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #111827;
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 56px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-text {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-title {
    color: #C19A5B;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9CA3AF;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #C19A5B;
}

.footer-contact li {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 2rem;
}

.footer-social a {
    color: #9CA3AF;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #C19A5B;
}
.is-hidden {
    display: none !important;
}

/* ==========================================
   CHAT BUTTON
   ========================================== */
.chat-btn {
    display : none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #C19A5B;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
}

.chat-btn:hover {
    background: #A67F47;
    transform: scale(1.05);
}

/* ==========================================
   PAGE HEADER
   ========================================== */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(to bottom, #F9FAFB, white);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #6B7280;
}

/* ==========================================
   PAGE HERO (About)
   ========================================== */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-hero-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.page-hero-subtitle {
    font-size: clamp(1rem, 2.8vw, 1.25rem);
    line-height: 1.5;
    max-width: 40ch;
    margin: 0 auto;
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
    background: #C19A5B;
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

/* ==========================================
   ABOUT CONTENT SECTION
   ========================================== */
.about-content-section {
    padding: 5rem 0;
}

.about-text-col .about-text {
    margin-bottom: 2rem;
}

.about-image-col img {
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.about-text-col p {
  text-align: justify;
  text-justify: inter-word;
}
@media (max-width: 768px) {
  .about-text-col p {
    text-align: left;
  }
}
.about-text-col p {
  margin-bottom: 1.4rem;
  line-height: 1.7;
}

/* ==========================================
   VALUES SECTION
   ========================================== */
.values-section {
    padding: 5rem 0;
    background: #F9FAFB;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: rgba(193, 154, 91, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.value-text {
    color: #6B7280;
}
/* ==========================================
   methodology SECTION
   ========================================== */
.methodology-grid {
  max-width: 800px; /* Un peu plus serré pour plus de focus */
  margin: 60px auto 0;
  position: relative;
}

/* La ligne verticale de liaison */
.methodology-grid::before {
  content: '';
  position: absolute;
  left: 19px; /* Aligné au centre du numéro */
  top: 20px;
  bottom: 60px;
  width: 1px;
  background: #eee; /* Ligne très fine et discrète */
  z-index: 0;
}

.method-step {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

/* Effet de focus quand on survole une étape */
.method-step:hover {
  transform: translateX(6px);
}

.step-marker {
  font-size: 1rem; /* Plus petit pour être élégant */
  font-weight: 700;
  color: #fff;
  background: #c19a5b; /* Fond coloré pour le numéro */
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* Transformation en cercle */
  box-shadow: 0 6px 14px rgba(193, 154, 91, 0.3);
}

.step-content h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.step-content p {
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
}

.method-step:last-child {
  margin-bottom: 0;
}


/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(to right, rgba(193, 154, 91, 0.1), rgba(166, 127, 71, 0.1));
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    color: #6B7280;
    margin-bottom: 2rem;
}

/* ==========================================
   SERVICES DETAIL PAGE
   ========================================== */
.services-detail-section {
    padding: 5rem 0;
}
@media (max-width: 768px) {
    .services-context .container p {
        padding: 0 20px;
        font-size: 1rem; /* Un peu plus petit pour mobile */
    }
}
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.service-detail-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    box-shadow: 0 20px 25px rgba(0,0,0,0.15);
}

.service-detail-image {
    height: 320px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.service-detail-card:hover .service-detail-image {
    transform: scale(1.1);
}

.service-detail-content {
    padding: 2rem;
}

.service-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.service-detail-list {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #374151;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .zone-content {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .services-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
   
.form-success {
    text-align: center;
    padding: 60px 30px;
    background: #f9f9f9;
    border: 1px solid #eee;
}

.form-success h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-success p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}