 :root {
     --green-main: #597f47;
     --green-light: #6b9651;
     --green-dark: #4e6e3f;
     --cream: #efe0bf;
 }

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

 html,
 body {
     height: 100%;
     font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
     background-color: var(--green-main);
     color: var(--cream);
     overflow-x: hidden;
 }

 a {
     color: var(--cream);
     text-decoration: underline;
     transition: text-decoration 0.2s ease;
 }

 a:hover {
     text-decoration: none;
 }

 .container {
     display: flex;
     min-height: 100vh;
 }

 .left {
     width: 50%;
     position: relative;
     overflow: hidden;
 }

 .left::before {
     content: '';
     position: absolute;
     top: 150px;
     left: 100px;
     right: 0;
     bottom: 0;
     background-image: url('bloemen.webp');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;

     -webkit-mask: url('cutout-mask.svg') no-repeat top left;
     -webkit-mask-size: contain;
     -webkit-mask-position: top left;
     mask: url('cutout-mask.svg') no-repeat top left;
     mask-size: contain;
     mask-position: top left;

 }

 .right {
     width: 50%;
     padding: 6rem 3rem;
     display: flex;
     flex-direction: column;
     justify-content: center;
     gap: 2rem;
 }

 .right section {
     margin-top: 3rem;
 }

 section {
     margin-bottom: 3rem;
 }

 h1,
 h2,
 h3 {
     color: var(--cream);
     margin-bottom: 1.5rem;
     margin-top: 1.5rem;
 }

 p {
     margin-bottom: 1.5rem;
     line-height: 1.3
 }


 blockquote {
     font-size: clamp(1.5rem, 3vw, 2.5rem);
 }

 .card-row {
     width: 100%;
     display: flex;
     justify-content: center;
     gap: 3rem;
     padding: 4rem 2rem;
     background-color: var(--green-main);
     flex-wrap: wrap;
 }

 .card {
     background-color: var(--green-light);
     color: var(--cream);
     border-radius: 1rem;
     overflow: hidden;
     max-width: 340px;
     display: flex;
     flex-direction: column;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
     transition: transform 0.3s;
 }

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

 .card img {
     width: 100%;
     height: 250px;
     object-fit: cover;
 }

 .card-content {
     padding: 1.5rem;
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }

 button,
 .card button {
     padding: 0.75rem;
     background-color: transparent;
     border: 2px solid var(--cream);
     color: var(--cream);
     cursor: pointer;
     border-radius: 6px;
     font-size: 1rem;
     transition: background-color 0.3s ease;
 }

 button:hover,
 .card button:hover {
     background-color: var(--cream);
     color: var(--green-main);
 }

 .contact-form-wrapper {
     width: 100%;
     padding: 4rem 2rem;
     background-color: var(--green-dark);
 }

 form {
     display: flex;
     flex-direction: column;
     gap: 1rem;
     max-width: 700px;
 }

 .form-field-group {
     display: flex;
     flex-wrap: wrap;
     gap: 1rem;
 }

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

 .form-half {
     flex: 1;
 }

 label {
     font-weight: bold;
 }

 input,
 textarea {
     padding: 0.75rem;
     background-color: var(--cream);
     color: #333;
     border: none;
     border-radius: 4px;
     font-size: 1rem;
 }


 footer {
     padding: 2rem;
     text-align: center;
     font-size: 0.9rem;
 }

 .logo-container {
     position: fixed;
     top: 2rem;
     left: 2rem;

     z-index: 10;
     padding: 0.5rem 1rem;
 }

 .logo-container img {
     height: 60px;
     width: auto;
     display: block;
 }

 .contact-columns {
     display: flex;
     justify-content: center;
     align-items: flex-start;
     flex-wrap: wrap;
     gap: 3rem;
     max-width: 1200px;
     margin: 0 auto;
 }

 .contact-columns>div {
     flex: 1 1 300px;
     min-width: 280px;
 }

 .contact-columns>div:last-child {
     padding-left: 4rem;
 }

 .social-icon {
     width: 27px;
     height: 27px;
     fill: var(--cream);
     margin-right: 0.5rem;
     vertical-align: middle;
     transition: transform 0.3s ease, fill 0.3s ease;
     cursor: pointer;
 }

 .social-icon:hover {
     transform: scale(1.2);
 }

 .tuinaannemer {
     display: block;
     fill: var(--cream);
     width: 8rem;
     height: auto;
 }

 @media (max-width: 768px) {

     .container {
         flex-direction: column;
     }

     .left,
     .right {
         width: 100%;
         height: auto;
     }

     .card-row {
         flex-direction: column;
         align-items: center;
     }

     .right {
         padding: 2rem;
     }

     blockquote {
         margin-top: 1rem
     }

     .contact-columns {
         flex-direction: column;
         align-items: stretch;
     }

     .contact-columns>div:last-child {
         padding-left: 0;
     }

     .logo-container {
         background-color: var(--green-main);
         top: 0;
         left: 0;
         width: 100%;
         padding: 1rem 0;
     }

     .logo-container img {
         height: 60px;
         display: block;
         margin: 0 auto;
     }
 }