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

:root {
    --primary-color: #2C5F4F;
    --secondary-color: #8B6F47;
    --accent-color: #D4A574;
    --text-dark: #1A1A1A;
    --text-light: #4A4A4A;
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.ad-disclosure {
    background: #FFF9E6;
    border-bottom: 1px solid #E8D7A3;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6B5A2E;
}

.nav-floating {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.hero-visual {
    position: relative;
    height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2C3E3A;
}

.hero-visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,95,79,0.7) 0%, rgba(44,95,79,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-white);
    max-width: 900px;
    padding: 0 40px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 20px;
    line-height: 1.5;
    opacity: 0.95;
}

.story-intro {
    padding: 100px 40px;
    background: var(--bg-light);
}

.content-narrow {
    max-width: 780px;
    margin: 0 auto;
}

.lead-text {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.5;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cards-grid {
    padding: 100px 40px;
    background: var(--bg-white);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
}

.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.insight-card {
    flex: 1;
    min-width: 320px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.insight-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.insight-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.visual-split {
    display: flex;
    min-height: 600px;
    background-color: #F5F1ED;
}

.split-image {
    flex: 1;
    min-width: 50%;
    background-color: #D4CEC7;
}

.split-image img {
    width: 100%;
    height: 100%;
}

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.split-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.highlight-box {
    background: var(--bg-white);
    border-left: 4px solid var(--primary-color);
    padding: 20px 24px;
    margin-top: 30px;
    border-radius: 4px;
}

.highlight-box strong {
    color: var(--primary-color);
}

.highlight-box a {
    color: var(--secondary-color);
    text-decoration: none;
}

.approach-section {
    padding: 100px 40px;
    background: var(--bg-white);
}

.section-intro {
    font-size: 20px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.approach-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.approach-card {
    flex: 1;
    min-width: 350px;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.approach-card:hover {
    transform: scale(1.02);
}

.approach-card img {
    width: 100%;
    height: 240px;
}

.card-content {
    padding: 32px 28px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.card-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.testimonials-inline {
    padding: 80px 40px;
    background: linear-gradient(135deg, #F0EBE6 0%, #FAF7F3 100%);
}

.testimonial {
    background: var(--bg-white);
    padding: 40px 45px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.testimonial cite {
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.benefits-reveal {
    padding: 100px 40px;
    background: var(--bg-white);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 35px 25px;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.benefit-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.services-showcase {
    padding: 100px 40px;
    background: var(--bg-light);
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card img {
    width: 100%;
    height: 220px;
}

.service-info {
    padding: 32px 28px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-select {
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-select:hover {
    background: #234A3D;
}

.form-section {
    padding: 100px 40px;
    background: var(--bg-white);
}

.contact-form {
    background: var(--bg-light);
    padding: 50px 45px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #234A3D;
}

.disclaimer-section {
    padding: 60px 40px;
    background: #FFF9F0;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
}

.references-section {
    padding: 60px 40px;
    background: var(--bg-light);
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.references-list a {
    color: var(--secondary-color);
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.site-footer {
    background: #1A2A26;
    color: #B8C5C1;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    color: var(--bg-white);
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #B8C5C1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2A3A36;
    text-align: center;
    font-size: 14px;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
    padding: 30px 40px;
    z-index: 9999;
    display: none;
}

.cookie-consent.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background: #234A3D;
}

.btn-reject {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-reject:hover {
    border-color: var(--text-dark);
}

.page-hero {
    padding: 100px 40px 60px;
    background: linear-gradient(135deg, #F5F1ED 0%, #FAF7F3 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

.about-story {
    padding: 100px 40px;
    background: var(--bg-white);
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    background-color: #E8E4DF;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.story-text p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.philosophy-section {
    padding: 100px 40px;
    background: var(--bg-light);
}

.philosophy-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.philosophy-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.philosophy-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.philosophy-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.values-section {
    padding: 100px 40px;
    background: var(--bg-white);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1;
    min-width: 320px;
}

.value-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.team-section {
    padding: 100px 40px;
    background: var(--bg-light);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.team-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.team-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.team-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.cta-about,
.cta-services {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #234A3D 100%);
    text-align: center;
    color: var(--bg-white);
}

.cta-about h2,
.cta-services h2 {
    font-size: 38px;
    margin-bottom: 18px;
}

.cta-about p,
.cta-services p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.services-detailed {
    padding: 80px 40px;
    background: var(--bg-white);
}

.service-block {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background-color: #E8E4DF;
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-details p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.service-features {
    list-style: none;
    margin: 30px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.service-pricing {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    margin-right: 10px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.process-section {
    padding: 100px 40px;
    background: var(--bg-light);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.process-step {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-section {
    padding: 80px 40px;
    background: var(--bg-white);
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-intro {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.email-text {
    color: var(--text-dark);
    cursor: default;
}

.contact-note {
    background: var(--bg-light);
    padding: 20px 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-map {
    flex: 1;
    background-color: #E8E4DF;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4CEC7 0%, #E8E4DF 100%);
}

.map-placeholder p {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
}

.contact-cta {
    padding: 80px 40px;
    background: var(--bg-light);
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.thanks-section {
    padding: 120px 40px;
    background: var(--bg-light);
    min-height: 70vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-white);
    padding: 60px 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-info {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-next {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.next-steps {
    padding-left: 25px;
}

.next-steps li {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.legal-page {
    padding: 80px 40px;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-light);
}

.legal-page ul,
.legal-page ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-page li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-note {
    background: var(--bg-light);
    padding: 20px 24px;
    border-radius: 8px;
    margin-top: 40px;
    font-style: italic;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

    .section-title {
        font-size: 32px;
    }

    .visual-split {
        flex-direction: column;
    }

    .split-content {
        padding: 50px 30px;
    }

    .story-layout {
        flex-direction: column;
    }

    .service-block,
    .service-block.reverse {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}