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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2e7d32;
    --accent-color: #d84315;
    --text-dark: #212121;
    --text-light: #616161;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.header-asymmetric {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-asymmetric {
    min-height: 600px;
    padding: 80px 5% 60px;
    background-color: var(--bg-light);
}

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

.hero-text-block {
    flex: 1;
    padding-left: 60px;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-text-block p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 540px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #0d3a66;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -40px;
    background-color: #ddd;
    border-radius: 12px;
    overflow: hidden;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-offset {
    padding: 100px 5%;
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-block-left {
    flex: 1.5;
    padding-right: 40px;
}

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

.intro-block-left p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.intro-stats-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 60px;
}

.stat-card {
    padding: 28px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
}

.stat-label {
    font-size: 15px;
    line-height: 1.4;
}

.services-preview-irregular {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.section-header-tilted {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding-left: 80px;
}

.section-header-tilted h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header-tilted p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    gap: 32px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.card-large {
    margin-left: 0;
}

.card-offset-right {
    margin-left: 120px;
}

.card-offset-left {
    margin-right: 120px;
}

.card-wide {
    margin-left: 60px;
}

.card-floating {
    margin-right: 60px;
}

.service-image {
    flex: 1;
    min-width: 300px;
    background-color: #ddd;
}

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

.service-content {
    flex: 1.5;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-content h3 {
    font-size: 26px;
    color: var(--text-dark);
}

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

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 8px;
}

.select-service {
    margin-top: auto;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #0d3a66;
}

.approach-section-diagonal {
    padding: 100px 5%;
    background-color: white;
}

.approach-content-staggered {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1.2;
    padding-right: 40px;
}

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

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

.approach-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -80px;
    background-color: #ddd;
    border-radius: 12px;
    overflow: hidden;
}

.approach-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.testimonials-scattered {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.testimonials-scattered h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonials-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial {
    background-color: white;
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.testimonial-offset-1 {
    margin-left: 0;
    margin-right: 200px;
}

.testimonial-offset-2 {
    margin-left: 200px;
    margin-right: 0;
}

.testimonial-offset-3 {
    margin-left: 100px;
    margin-right: 100px;
}

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

.testimonial-author {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.form-section-asymmetric {
    padding: 100px 5%;
    background-color: white;
}

.form-container-offset {
    max-width: 800px;
    margin: 0 auto;
    margin-left: 15%;
}

.form-header-block {
    margin-bottom: 40px;
}

.form-header-block h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-header-block p {
    font-size: 17px;
    color: var(--text-light);
}

.form-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    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: var(--primary-color);
}

.btn-submit {
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    margin-top: 16px;
}

.btn-submit:hover {
    background-color: #1b5e20;
}

.footer-asymmetric {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 5% 20px;
}

.footer-content-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-block {
    flex: 1;
}

.footer-block h3,
.footer-block h4 {
    margin-bottom: 16px;
    font-size: 20px;
}

.footer-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
}

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

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

.footer-block a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: white;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid #424242;
    font-size: 13px;
    color: #999;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

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

.btn-cookie-accept {
    background-color: var(--secondary-color);
    color: white;
}

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

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

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

.cookie-link {
    color: white;
    text-decoration: underline;
    font-size: 14px;
}

.about-hero-offset {
    padding: 100px 5% 60px;
    background-color: var(--bg-light);
}

.about-header-block {
    max-width: 900px;
    margin: 0 auto;
    margin-left: 10%;
}

.about-header-block h1 {
    font-size: 52px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-header-block p {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.story-section-irregular {
    padding: 100px 5%;
    background-color: white;
}

.story-content-diagonal {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image-left {
    flex: 1;
    background-color: #ddd;
    border-radius: 12px;
    overflow: hidden;
}

.story-image-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-text-right {
    flex: 1.3;
    padding-left: 40px;
}

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

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

.philosophy-asymmetric {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.philosophy-block-offset {
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-block-offset h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
}

.philosophy-items-scattered {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.philosophy-item {
    background-color: white;
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.item-position-1 {
    margin-left: 0;
    margin-right: 200px;
}

.item-position-2 {
    margin-left: 200px;
    margin-right: 0;
}

.item-position-3 {
    margin-left: 100px;
    margin-right: 100px;
}

.item-position-4 {
    margin-left: 50px;
    margin-right: 150px;
}

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

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

.approach-methodology-split {
    padding: 100px 5%;
    background-color: white;
}

.methodology-content-overlap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.methodology-text {
    flex: 1.5;
}

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

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

.methodology-visual {
    flex: 1;
}

.methodology-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-item {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.stat-desc {
    font-size: 15px;
    color: var(--text-light);
}

.team-section-staggered {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.team-section-staggered h2 {
    font-size: 42px;
    margin-bottom: 24px;
    text-align: center;
    color: var(--text-dark);
}

.team-intro {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
}

.clients-irregular {
    padding: 100px 5%;
    background-color: white;
}

.clients-block {
    max-width: 1200px;
    margin: 0 auto;
}

.clients-block h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.clients-block > p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 48px;
}

.clients-categories {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.category-item {
    background-color: var(--bg-light);
    padding: 36px;
    border-radius: 12px;
}

.category-item:nth-child(2) {
    margin-left: 100px;
}

.category-item:nth-child(3) {
    margin-right: 100px;
}

.category-item h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.services-hero-diagonal {
    padding: 100px 5% 60px;
    background-color: var(--bg-light);
}

.services-header-offset {
    max-width: 1000px;
    margin: 0 auto;
    margin-right: 10%;
}

.services-header-offset h1 {
    font-size: 52px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.services-header-offset p {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-detailed-asymmetric {
    padding: 60px 5% 100px;
    background-color: white;
}

.service-block {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-layout-1 {
    flex-direction: row;
}

.service-layout-2 {
    flex-direction: row-reverse;
}

.service-layout-3 {
    flex-direction: column;
}

.service-layout-4 {
    flex-direction: row;
}

.service-layout-5 {
    flex-direction: column;
    position: relative;
}

.service-visual {
    flex: 1;
    background-color: #ddd;
    border-radius: 12px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-visual-offset {
    flex: 1;
    background-color: #ddd;
    border-radius: 12px;
    overflow: hidden;
    margin-top: -60px;
}

.service-visual-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-visual-full {
    width: 100%;
    height: 400px;
    background-color: #ddd;
    border-radius: 12px;
    overflow: hidden;
}

.service-visual-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details {
    flex: 1.3;
}

.service-details-wide {
    width: 100%;
    padding: 40px 60px;
}

.service-details-overlay {
    position: absolute;
    bottom: 40px;
    left: 60px;
    right: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 12px;
}

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

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

.service-details-list {
    margin: 24px 0;
}

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

.service-details-list ul {
    list-style-position: inside;
    color: var(--text-light);
}

.service-details-list li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.service-pricing {
    margin: 24px 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 17px;
    color: var(--text-light);
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-note {
    font-size: 15px;
    color: var(--text-light);
}

.btn-service-action {
    display: inline-block;
    margin-top: 16px;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-service-action:hover {
    background-color: #0d3a66;
}

.custom-programs-section {
    padding: 60px 5% 100px;
    background-color: var(--bg-light);
}

.custom-block-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    margin-left: 15%;
    background-color: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.custom-block-asymmetric h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.custom-block-asymmetric p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.btn-custom-contact {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-custom-contact:hover {
    background-color: #1b5e20;
}

.contact-hero-offset {
    padding: 100px 5% 60px;
    background-color: var(--bg-light);
}

.contact-header-diagonal {
    max-width: 900px;
    margin: 0 auto;
    margin-left: 12%;
}

.contact-header-diagonal h1 {
    font-size: 52px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.contact-header-diagonal p {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-info-asymmetric {
    padding: 100px 5%;
    background-color: white;
}

.contact-blocks-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact-block {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.block-position-1 {
    margin-right: 300px;
}

.block-position-2 {
    margin-left: 300px;
}

.block-position-3 {
    margin-right: 150px;
    margin-left: 150px;
}

.contact-block h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

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

.contact-detail h3 {
    font-size: 19px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.email-text {
    color: var(--text-dark);
    font-weight: 500;
}

.reach-out-section-split {
    padding: 60px 5% 100px;
    background-color: var(--bg-light);
}

.reach-out-section-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

.reach-out-content {
    flex: 1;
    padding-right: 40px;
}

.reach-out-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.btn-reach-out {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-reach-out:hover {
    background-color: #0d3a66;
}

.reach-out-visual {
    flex: 1;
    background-color: #ddd;
    border-radius: 12px;
    overflow: hidden;
}

.reach-out-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.thanks-section-centered {
    padding: 120px 5% 80px;
    background-color: var(--bg-light);
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.selected-service-info {
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 48px;
    font-size: 17px;
    color: var(--text-dark);
}

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

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--text-dark);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background-color: white;
    padding: 24px;
    border-radius: 8px;
}

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

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

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

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #0d3a66;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.additional-resources-asymmetric {
    padding: 60px 5% 100px;
    background-color: white;
}

.resources-block {
    max-width: 1000px;
    margin: 0 auto;
    margin-left: 12%;
}

.resources-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.resources-block > p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.resource-links {
    display: flex;
    gap: 24px;
}

.resource-link {
    flex: 1;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.resource-link:hover {
    transform: translateY(-4px);
}

.resource-link h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.legal-page-content {
    padding: 80px 5% 60px;
    background-color: white;
}

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

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

.legal-update {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

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

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

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

.legal-section ul {
    list-style-position: inside;
    color: var(--text-light);
    margin-left: 20px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-section strong {
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content-offset,
    .intro-offset,
    .approach-content-staggered,
    .story-content-diagonal,
    .methodology-content-overlap,
    .service-block,
    .contact-blocks-irregular,
    .reach-out-section-split {
        flex-direction: column;
    }

    .hero-text-block,
    .intro-block-left,
    .approach-text,
    .story-text-right,
    .methodology-text {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-image-overlap,
    .approach-image-overlap {
        margin-top: 20px;
    }

    .card-offset-right,
    .card-offset-left,
    .card-wide,
    .card-floating {
        margin-left: 0;
        margin-right: 0;
    }

    .testimonial-offset-1,
    .testimonial-offset-2,
    .testimonial-offset-3 {
        margin-left: 0;
        margin-right: 0;
    }

    .item-position-1,
    .item-position-2,
    .item-position-3,
    .item-position-4 {
        margin-left: 0;
        margin-right: 0;
    }

    .block-position-1,
    .block-position-2,
    .block-position-3 {
        margin-left: 0;
        margin-right: 0;
    }

    .form-container-offset,
    .about-header-block,
    .services-header-offset,
    .contact-header-diagonal,
    .custom-block-asymmetric,
    .resources-block {
        margin-left: 0;
        margin-right: 0;
    }

    .service-card {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 16px;
    }

    .resource-links {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }
}