/*
Theme Name: Bonsai Exercice
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, serif;
  background: #f6f2ec;
  color: #1f3d36;
}
.site-main {
  padding: 0;
}

.hero {
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}

.hero-image-container {
  position: relative;
  height: 100%;
  margin-top: 80px;
  height: calc(100% - 80px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: black;
  font-size: 45px;
  cursor: pointer;
  border: none;
}

.hero-arrow--prev {
  left: 16px;
}

.hero-arrow--next {
  right: 16px;
}

.hero-image-caption {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-image-label {
  background-color: #566334;
  color: white;
  padding: 8px 75px;
  font-size: 2rem;
  transform: translateY(55px);
}

.btn.hero-image-btn {
  background-color: #2a4740;
  border: 2px solid white;
  transform: translateY(80px);
}

.hero-inner {
  display: grid;
  grid-template-columns: 40% 60%;
  height: 100%;
}

.hero-text {
  background-color: #f6f1e8;
  color: #000000;
  padding: 0 120px;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.hero-text h1 {
  font-size: 70px;
  line-height: 1.4;
  margin-bottom: 24px;
  font-weight: 500;
  max-width: 400px;
  
}

.hero-text p {
  font-size: 18px;
  margin: 0;
}

.hero-image {
  background-image: url('assets/bonsai.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
}

html {
  margin-top: 0 !important;
}

html, body {
  margin: 0;
  padding: 0;
}

.site-main {
  margin: 0;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #1f3d36;
  z-index: 1000;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&display=swap');

.logo {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.35em;
}

.site-title {
  font-family: 'Playfair Display', serif;
  padding-left: 80px;
  font-weight: 200;
}
.site-nav a {
  color: #fff;
  position: relative;
  text-decoration: none;
  margin-left: 24px;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
  padding-right: 50px;
}

.site-nav a {
  color: #fff;
  position: relative;
  text-decoration: none;
  margin-left: 24px;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
  padding-right: 25px;
  display: inline-block;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  transform: translateY(5px);
  background-color: currentColor;
  transition: width 0.3s ease;
}

.site-nav a:hover::after {
  width: calc(100% - 25px)}

.services {
  background-color: #1f3d36;
  color: #ffffff;
  padding: 0;
  margin: 0;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  position: relative;
}

.services-inner {
  width: 100%;
  height: 100%;
  padding: 0 120px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  position: relative;
}

.services-left {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-self: center;
}

.services-right {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-self: center;
  margin-top: 195px;
  margin-left: 150px;
}

.services-title {
  font-size: 48px;
  margin: 0;
  text-align: left;
  line-height: 1.2;
  font-weight: 200;
  letter-spacing: 0.04em;
}

.services-cta {
  grid-column: 1 / -1;
  grid-row: 2;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 120px;
}

.service {
  text-align: left;
}

.service h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 200;
}

.service p {
  font-size: 16px;
  margin: 0;
  opacity: 0.9;
}

.services h2,
.services h3 {
  margin-top: 0;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #1f3d36;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  border-radius: 4px;
}

.btn--outline {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.header-inner {
  justify-content: space-between;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 40px;
  color: #fff;
  font-weight: 600;
}
body.admin-bar .hero {
  height: calc(100vh - 32px);
  min-height: calc(100vh - 32px);
  max-height: calc(100vh - 32px);
}

body.admin-bar .services {
  height: calc(100vh - 32px);
  min-height: calc(100vh - 32px);
  max-height: calc(100vh - 32px);
}

body.admin-bar .species {
  min-height: calc(100vh - 32px);
}

body.admin-bar .blog-section {
  height: calc(100vh - 32px - 120px);
  min-height: calc(100vh - 32px - 120px);
}

body.admin-bar .single-post,
body.admin-bar .archive-page,
body.admin-bar .blog-home {
  padding-top: 152px; /* 80px header + 40px spacing + 32px admin bar */
}
.section-beige {
  background-color: #f6f1e8; /* ou la couleur beige du modèle */
  padding: 120px 0;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Species section - page blanche (100vh) */
.species {
  background-color: #f6f1e8;
  height: auto;
  min-height: 100vh;
  padding: 90px 40px;
  display: flex;
  align-items: center;
}

.species-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.species-title {
  font-size: 48px;
  text-align: center;
  color: #000000;
  margin-bottom: 60px;
  padding-right: 545px;
}

.species-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
  padding-top: 80px;
}

.species-item:last-child {
  margin-bottom: 0;
}

.species-item--reverse






.species-content {
  padding-top: 0;
  padding-bottom: 0;
}

.species-content h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin: 0 0 16px 0;
}

.species-content p {
  color: #000000;
  margin-bottom: 24px;
  line-height: 1.6;
  font-size: 16px;
}

.species-image {
  min-height: 320px;
  background-color: #ddd;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.species-image--juniper {
  border-radius: 0px 200px 0px 0;
  background-image: url('assets/Cerisier.jpg');
}

.species-image--maple {
  border-radius: 250px 0px 0 0px;
  background-image: url('assets/Erable.jpg');
  height: 500px;
}

.species-image--forum {
  border-bottom-right-radius: 200px;
  background-image: url('assets/bonsai.jpg');
}

/* Blog section - dernière page (100vh) */
.blog-section {
  background-color: #1f3d36;
  color: #fff;
  height: calc(100vh - 120px);
  min-height: calc(100vh - 120px);
  margin: 0;
  padding: 80px 40px;
  display: flex;
  align-items: center;
}

.blog-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.blog-title {
  font-size: 45px;
  color: #fff;
  margin: 0 0 50px 0;
  line-height: 1.2;
  font-weight: 400;
  text-align: left;
}

.blog-title u {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.blog-card {
  background-color: #f6f1e8;
  color: #000000;
  border-radius: 0;
  overflow: hidden;
  padding-bottom: 24px;
}

.blog-card-image {
  height: 150px;
  background-color: #ddd;
  background-image: url('assets/bonsai.jpg');
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
}

.blog-card h3 {
  font-size: 20px;
  margin: 0 20px 8px;
  padding-bottom: 8px;
  position: relative;
}

.blog-card h3::after {
  content: '';
  position: absolute;
  left: 0;
  width: 75%;
  bottom: 0;
  height: 1px;
  background-color: #000000;
}

.blog-card p {
  font-size: 14px;
  margin: 0 20px;
  color: #000000;
  opacity: 1;
  line-height: 1.4;
}

/* Articles et pages de contenu */
.single-post,
.archive-page,
.blog-home {
  padding: 120px 40px 40px 40px; /* 80px header + 40px spacing */
  max-width: 1200px;
  margin: 0 auto;
}

/* Single post styles */
.single-post article {
  margin-bottom: 40px;
}

.single-post h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #1f3d36;
  font-weight: 500;
}

.single-post .post-thumbnail {
  margin-bottom: 32px;
}

.single-post .post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.single-post .post-content {
  line-height: 1.8;
  font-size: 18px;
  color: #1f3d36;
}

.single-post .post-content p {
  margin-bottom: 20px;
}

/* ACF Fields Section */
.acf-fields-section {
  margin-top: 48px;
  padding: 32px;
  background-color: #f6f1e8;
  border-radius: 8px;
  border-left: 4px solid #1f3d36;
}

.acf-fields-section h2 {
  font-size: 28px;
  color: #1f3d36;
  margin-bottom: 24px;
  font-weight: 500;
}

.acf-field {
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 16px;
}

.acf-field:last-child {
  margin-bottom: 0;
}

.acf-field strong {
  color: #1f3d36;
  font-weight: 600;
}

/* Contact Form Styles */
.contact-form {
  max-width: 600px;
  margin: 32px 0;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1f3d36;
  font-size: 16px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-size: 16px;
  font-family: Georgia, serif;
  transition: border-color 0.3s ease;
}

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

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

.contact-submit {
  background-color: #1f3d36;
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-submit:hover {
  background-color: #566334;
}

.contact-message {
  padding: 16px 20px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-weight: 500;
}

.contact-success {
  background-color: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}

.contact-error {
  background-color: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}

/* Archive page styles */
.archive-page h1 {
  font-size: 48px;
  margin-bottom: 40px;
  color: #1f3d36;
  font-weight: 500;
}

.archive-posts {
  display: grid;
  gap: 40px;
}

.archive-post {
  padding: 24px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.archive-post h2 {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 500;
}

.archive-post h2 a {
  color: #1f3d36;
  text-decoration: none;
  transition: color 0.3s ease;
}

.archive-post h2 a:hover {
  color: #566334;
}

.archive-post-thumbnail {
  margin-bottom: 16px;
}

.archive-post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.archive-excerpt {
  margin-bottom: 16px;
  line-height: 1.6;
  color: #444;
}

.read-more {
  display: inline-block;
  padding: 8px 20px;
  background-color: #1f3d36;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #566334;
}

/* Front page styles */
.front-page {
  padding: 0;
  max-width: 100%;
  margin: 0;
}

/* Front Hero Section */
.front-hero {
  background-color: #1f3d36;
  color: #fff;
  padding: 160px 40px 80px 40px;
  text-align: center;
  margin-top: 80px; /* Header height */
}

body.admin-bar .front-hero {
  margin-top: 112px; /* Header + admin bar */
}

.front-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.front-hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.front-hero p {
  font-size: 20px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Front Intro Section */
.front-intro {
  background-color: #f6f1e8;
  padding: 80px 40px;
}

.front-intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.front-intro h2 {
  font-size: 36px;
  color: #1f3d36;
  margin-bottom: 24px;
  font-weight: 500;
}

.front-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

/* Front Posts Section */
.front-posts {
  background-color: #fff;
  padding: 80px 40px;
}

.front-posts-content {
  max-width: 1200px;
  margin: 0 auto;
}

.front-posts h2 {
  font-size: 36px;
  color: #1f3d36;
  margin-bottom: 48px;
  text-align: center;
  font-weight: 500;
}

.front-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.front-post-card {
  background-color: #f6f1e8;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.front-post-card:hover {
  transform: translateY(-5px);
}

.front-post-thumbnail {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.front-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.front-post-card:hover .front-post-thumbnail img {
  transform: scale(1.05);
}

.front-post-title {
  font-size: 22px;
  margin: 20px 20px 12px;
  font-weight: 500;
}

.front-post-title a {
  color: #1f3d36;
  text-decoration: none;
  transition: color 0.3s ease;
}

.front-post-title a:hover {
  color: #566334;
}

.front-post-excerpt {
  margin: 0 20px 16px;
  line-height: 1.6;
  color: #444;
  font-size: 15px;
}

.front-post-card .read-more {
  margin: 0 20px 20px;
}

/* Blog home page styles */
.blog-home .blog-header {
  margin-bottom: 48px;
}

.blog-home .blog-page-title {
  font-size: 48px;
  color: #1f3d36;
  font-weight: 500;
  margin: 0;
}

.blog-posts {
  display: grid;
  gap: 40px;
}

.blog-post-item {
  padding: 24px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.blog-post-title {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 500;
}

.blog-post-title a {
  color: #1f3d36;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post-title a:hover {
  color: #566334;
}

.blog-post-thumbnail {
  margin-bottom: 16px;
}

.blog-post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.blog-post-excerpt {
  margin-bottom: 16px;
  line-height: 1.6;
  color: #444;
}

/* Footer */
.site-footer {
  background-color: #f6f1e8;
  padding: 48px 40px;
}

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

.footer-social a {
  color: #818181;
  text-decoration: none;
  margin-right: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(25px);
}

.footer-social a i {
  font-size: 1.5rem;
}

.footer-brand {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #818181;
  transform: translateY(30px);
}

.footer-copyright {
  font-size: 14px;
  color: #818181;
  margin: 0;
  transform: translateY(30px);
}
.species .species-content h3 {
  font-size: 32px !important;
  font-weight: 500 !important;
  margin: 0 0 16px 0 !important;
  color: #000000 !important;
}

/* ========================================
   RESPONSIVE - MOBILE (<768px)
   ======================================== */

@media (max-width: 767px) {
  /* Global mobile rules */
  body {
    overflow-x: hidden;
  }

  .site-main {
    padding: 0 20px;
  }

  /* Header mobile */
  .site-header {
    height: 60px;
  }

  .header-inner {
    padding: 0 20px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .site-title {
    padding-left: 0;
    font-size: 18px;
  }

  .site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .site-nav a {
    margin-left: 0;
    padding-right: 10px;
    font-size: 14px;
  }

  /* Hero section mobile */
  .hero {
    height: auto;
    min-height: auto;
    max-height: none;
    overflow: visible;
    margin-bottom: 10px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
  }

  .hero-text {
    order: 1;
    padding: 40px 20px;
    padding-top: 80px;
    text-align: center;
    align-items: center;
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
    max-width: 100%;
    text-align: center;
  }

  .hero-text h1 br {
    display: none;
  }

  .hero-text p {
    font-size: 16px;
    text-align: center;
  }

  .hero-image-container {
    order: 2;
    margin-top: 0;
    margin-bottom: 0;
    height: 400px;
    position: relative;
  }

  .hero-image {
    height: 100%;
    width: 100%;
  }

  .hero-arrow {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }

  .hero-arrow--prev {
    left: 10px;
  }

  .hero-arrow--next {
    right: 10px;
  }

  .hero-image-caption {
    bottom: 10%;
  }

  .hero-image-label {
    font-size: 1rem;
    padding: 8px 20px;
    transform: translateY(0);
    white-space: nowrap;
  }

  .btn.hero-image-btn {
    transform: translateY(0);
    margin-top: 10px;
  }

  /* Services section mobile */
  .services {
    height: auto;
    min-height: auto;
    max-height: none;
    padding: 40px 20px;
    margin-bottom: 40px;
  }

  .services-inner {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .services-left,
  .services-right {
    grid-column: unset;
    grid-row: unset;
    margin: 0;
    gap: 50px;
  }

  .services-title {
    font-size: 32px;
    text-align: center;
  }

  .service {
    text-align: center;
  }

  .service h3 {
    font-size: 20px;
  }

  .service p {
    font-size: 15px;
  }

  .services-cta {
    padding-top: 20px;
    padding-bottom: 0;
  }

  body.admin-bar .services {
    height: auto;
    min-height: auto;
    max-height: none;
  }

  /* Species section mobile */
  .species {
    height: auto;
    min-height: auto;
    padding: 40px 20px;
    margin-bottom: 40px;
  }

  .species-title {
    font-size: 32px;
    padding-right: 0;
    text-align: center;
    margin-bottom: 40px;
  }

  .species-item {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
    padding-top: 0;
  }

  /* Item 1 et 3 : image en haut, texte dessous */
  .species-item:nth-child(2) .species-content,
  .species-item:nth-child(4) .species-content {
    order: 2;
  }

  .species-item:nth-child(2) .species-image,
  .species-item:nth-child(4) .species-image {
    order: 1;
  }

  /* Item 2 (reverse) : texte en haut, image dessous */
  .species-item--reverse {
    direction: ltr;
  }

  .species-item--reverse .species-content {
    order: 1;
  }

  .species-item--reverse .species-image {
    order: 2;
  }

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

  .species-content h3 {
    font-size: 24px !important;
  }

  .species-content p {
    font-size: 15px;
  }

  .species-image {
    width: 100%;
    height: auto;
    min-height: 250px;
  }

  .species-image--maple {
    height: 300px;
  }

  body.admin-bar .species {
    min-height: auto;
  }

  /* Blog section mobile */
  .blog-section {
    height: auto;
    min-height: auto;
    padding: 40px 20px;
    margin-bottom: 40px;
  }

  .blog-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-card-image {
    height: 200px;
  }

  .blog-card h3 {
    font-size: 18px;
  }

  .blog-card p {
    font-size: 14px;
  }

  body.admin-bar .blog-section {
    height: auto;
    min-height: auto;
  }

  /* Footer mobile */
  .site-footer {
    padding: 40px 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-social {
    order: 1;
  }

  .footer-social a {
    transform: translateY(0);
  }

  .footer-brand {
    order: 2;
    transform: translateY(0);
  }

  .footer-copyright {
    order: 3;
    transform: translateY(0);
  }

  /* Buttons mobile */
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* Sections spacing */
  section {
    margin-bottom: 40px;
  }

  /* Single post mobile */
  .single-post,
  .archive-page,
  .blog-home {
    padding: 80px 20px 40px 20px;
  }

  .single-post h1,
  .archive-page h1,
  .blog-home .blog-page-title {
    font-size: 32px;
  }

  .single-post .post-content {
    font-size: 16px;
  }

  .acf-fields-section {
    padding: 24px 20px;
    margin-top: 32px;
  }

  .acf-fields-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .acf-field {
    font-size: 15px;
  }

  .archive-post h2,
  .blog-post-title {
    font-size: 22px;
  }

  /* Front page mobile */
  .front-hero {
    padding: 100px 20px 60px 20px;
    margin-top: 60px;
  }

  body.admin-bar .front-hero {
    margin-top: 92px;
  }

  .front-hero h1 {
    font-size: 32px;
  }

  .front-hero p {
    font-size: 16px;
  }

  .front-intro {
    padding: 60px 20px;
  }

  .front-intro h2 {
    font-size: 28px;
  }

  .front-intro p {
    font-size: 16px;
  }

  .front-posts {
    padding: 60px 20px;
  }

  .front-posts h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .front-posts-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .front-post-title {
    font-size: 20px;
  }

  /* Contact form mobile */
  .contact-form {
    max-width: 100%;
  }

  .form-group label {
    font-size: 15px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 15px;
  }

  .contact-submit {
    width: 100%;
    padding: 12px 24px;
  }
}