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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #229954;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-asymmetric {
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-area {
    margin-right: 60px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-offset {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

.nav-list a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #3498db;
}

.hero-asymmetric {
    min-height: 600px;
    padding: 80px 40px;
    background-color: #fafbfc;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 600px;
    padding-right: 40px;
    margin-top: -40px;
}

.hero-title-large {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    color: #1a252f;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #546e7a;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.hero-image-overlap {
    flex: 1;
    max-width: 550px;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-top: 60px;
}

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

.intro-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-narrow {
    flex: 1;
    max-width: 500px;
    margin-left: 80px;
}

.intro-narrow h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #1a252f;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.7;
}

.intro-wide-card {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    max-width: 600px;
    margin-top: -60px;
}

.intro-wide-card img {
    width: 100%;
    height: auto;
}

.card-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 40px 30px;
    color: #ffffff;
}

.card-overlay-text p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.services-preview-irregular {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.section-header-right {
    text-align: right;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
}

.section-header-right h2 {
    font-size: 42px;
    color: #1a252f;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header-right p {
    font-size: 18px;
    color: #546e7a;
}

.services-cards-stagger {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-offset {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 900px;
}

.service-card-offset:nth-child(2) {
    margin-left: 200px;
}

.service-card-offset:nth-child(3) {
    margin-left: 100px;
}

.service-image {
    flex: 0 0 280px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-card-offset h3 {
    font-size: 24px;
    color: #1a252f;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card-offset p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
    margin-bottom: 16px;
}

.link-arrow {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: #2980b9;
}

.benefits-split {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    display: flex;
    gap: 100px;
    align-items: center;
}

.benefits-text-block {
    flex: 1;
    max-width: 550px;
    margin-top: -80px;
}

.benefits-text-block h2 {
    font-size: 40px;
    color: #1a252f;
    margin-bottom: 28px;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    margin-bottom: 32px;
}

.benefits-list li {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.benefits-visual {
    flex: 1;
    max-width: 500px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.benefits-visual img {
    width: 100%;
    height: 100%;
}

.testimonial-inline {
    background-color: #fafbfc;
    padding: 80px 40px;
    margin: 120px 0;
}

.testimonial-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    margin-left: 30%;
    font-size: 26px;
    line-height: 1.5;
    color: #2c3e50;
    font-style: italic;
}

.testimonial-asymmetric cite {
    display: block;
    margin-top: 24px;
    font-size: 16px;
    font-style: normal;
    color: #7f8c8d;
}

.contact-form-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.form-header-offset {
    max-width: 600px;
    margin-bottom: 60px;
    margin-left: 100px;
}

.form-header-offset h2 {
    font-size: 42px;
    color: #1a252f;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-header-offset p {
    font-size: 18px;
    color: #546e7a;
}

.form-asymmetric {
    max-width: 700px;
    background-color: #fafbfc;
    padding: 50px;
    border-radius: 8px;
    margin-left: auto;
    margin-right: 150px;
}

.form-row-irregular {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.disclaimer-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.disclaimer-text {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    padding: 30px;
    background-color: #fafbfc;
    border-left: 4px solid #e74c3c;
    border-radius: 4px;
}

.footer-irregular {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
    margin-top: 120px;
}

.footer-columns-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col:nth-child(2) {
    margin-top: 40px;
}

.footer-col:nth-child(3) {
    margin-top: 20px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.page-hero-offset {
    padding: 100px 40px 60px;
    background-color: #fafbfc;
}

.hero-text-narrow {
    max-width: 800px;
    margin: 0 auto;
    margin-left: 15%;
}

.hero-text-narrow h1 {
    font-size: 48px;
    color: #1a252f;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text-narrow p {
    font-size: 20px;
    color: #546e7a;
}

.about-story-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-image-left {
    flex: 1;
    max-width: 500px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: -60px;
}

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

.story-text-overlap {
    flex: 1;
    max-width: 600px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-left: -60px;
    z-index: 10;
}

.story-text-overlap h2 {
    font-size: 32px;
    color: #1a252f;
    margin-bottom: 20px;
    font-weight: 700;
}

.story-text-overlap p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.values-irregular {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.section-title-offset {
    font-size: 42px;
    color: #1a252f;
    margin-bottom: 60px;
    font-weight: 700;
    margin-left: 20%;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    padding: 32px;
    background-color: #fafbfc;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:nth-child(2) {
    margin-top: 60px;
}

.value-card:nth-child(3) {
    margin-top: 30px;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 22px;
    color: #1a252f;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-card p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.6;
}

.team-mention {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.team-content-offset {
    max-width: 900px;
    margin-left: auto;
    margin-right: 100px;
}

.team-content-offset h2 {
    font-size: 38px;
    color: #1a252f;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-content-offset p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 40px;
}

.team-image-overlap {
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    margin-left: -150px;
}

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

.approach-section {
    max-width: 1200px;
    margin: 120px auto;
    padding: 60px 40px;
    background-color: #fafbfc;
    border-radius: 8px;
}

.approach-section h2 {
    font-size: 40px;
    color: #1a252f;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.approach-steps-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.step-block {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.step-block:nth-child(2) {
    margin-top: 40px;
}

.step-block:nth-child(4) {
    margin-top: 40px;
}

.step-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 16px;
    opacity: 0.3;
}

.step-block h3 {
    font-size: 20px;
    color: #1a252f;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-block p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.6;
}

.cta-about {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.cta-content-asymmetric {
    max-width: 700px;
    padding: 60px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 8px;
    color: #ffffff;
    margin-left: auto;
    margin-right: 80px;
}

.cta-content-asymmetric h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-content-asymmetric p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.9;
}

.cta-content-asymmetric .cta-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-content-asymmetric .cta-primary:hover {
    background-color: #ecf0f1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.services-detailed {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.service-detail-asymmetric {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.service-detail-asymmetric.reverse {
    flex-direction: row-reverse;
}

.service-content-left {
    flex: 1;
    max-width: 600px;
}

.service-content-left h2 {
    font-size: 32px;
    color: #1a252f;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-content-left p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 24px;
    line-height: 1;
}

.pricing-box {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    padding: 20px 32px;
    background-color: #fafbfc;
    border-radius: 6px;
    border: 2px solid #3498db;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

.price-value {
    font-size: 28px;
    color: #3498db;
    font-weight: 800;
}

.service-image-right {
    flex: 1;
    max-width: 500px;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-asymmetric:nth-child(odd) .service-content-left {
    margin-top: -40px;
}

.service-detail-asymmetric:nth-child(even) .service-content-left {
    margin-top: 40px;
}

.pricing-note {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.note-content {
    background-color: #fafbfc;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.note-content h3 {
    font-size: 20px;
    color: #1a252f;
    margin-bottom: 12px;
    font-weight: 600;
}

.note-content p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.7;
}

.cta-services {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.contact-info-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.contact-block-offset {
    flex: 1;
    max-width: 500px;
    margin-top: 60px;
}

.contact-detail {
    margin-bottom: 50px;
}

.contact-detail h2 {
    font-size: 24px;
    color: #1a252f;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.note-small {
    font-size: 14px;
    color: #95a5a6;
    margin-top: 12px;
}

.contact-image-overlap {
    flex: 1;
    max-width: 550px;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: -40px;
}

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

.contact-cta {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.cta-box-irregular {
    max-width: 700px;
    padding: 60px;
    background-color: #fafbfc;
    border-radius: 8px;
    margin-left: auto;
    margin-right: 100px;
    text-align: center;
}

.cta-box-irregular h2 {
    font-size: 32px;
    color: #1a252f;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-box-irregular p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 28px;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
}

.thanks-content-center {
    max-width: 800px;
    text-align: center;
}

.thanks-content-center h1 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 24px;
    font-weight: 800;
}

.thanks-message {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-content-center p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 40px;
}

.thanks-next-steps {
    background-color: #fafbfc;
    padding: 40px;
    border-radius: 8px;
    margin: 50px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 24px;
    color: #1a252f;
    margin-bottom: 20px;
    font-weight: 600;
}

.steps-list {
    padding-left: 24px;
}

.steps-list li {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 12px;
}

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

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.legal-content {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
}

.legal-content h1 {
    font-size: 40px;
    color: #1a252f;
    margin-bottom: 20px;
    font-weight: 800;
}

.legal-intro {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #ecf0f1;
}

.legal-content h2 {
    font-size: 26px;
    color: #1a252f;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2980b9;
}

.legal-updated {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ecf0f1;
    font-size: 14px;
    color: #95a5a6;
    font-style: italic;
}

@media (max-width: 1024px) {
    .hero-content-offset,
    .intro-offset,
    .services-cards-stagger,
    .benefits-split,
    .about-story-asymmetric,
    .service-detail-asymmetric,
    .contact-info-asymmetric {
        flex-direction: column;
    }

    .hero-text-block,
    .intro-narrow,
    .benefits-text-block {
        margin-top: 0;
        margin-left: 0;
    }

    .service-card-offset {
        margin-left: 0 !important;
    }

    .hero-title-large {
        font-size: 42px;
    }

    .nav-offset {
        flex-direction: column;
        gap: 16px;
    }

    .form-asymmetric {
        margin-left: 0;
        margin-right: 0;
    }

    .team-image-overlap {
        margin-left: 0;
    }

    .testimonial-asymmetric {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 36px;
    }

    .nav-list {
        flex-direction: column;
        gap: 16px;
    }

    .form-row-irregular {
        flex-direction: column;
    }

    .footer-columns-offset {
        flex-direction: column;
        gap: 40px;
    }

    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        margin-top: 0;
    }

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

    .values-grid-asymmetric {
        flex-direction: column;
    }

    .value-card:nth-child(2),
    .value-card:nth-child(3) {
        margin-top: 0;
    }
}