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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.header-asymmetric {
    position: relative;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

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

.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: #2c3e50;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s;
}

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 650px;
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

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

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a252f;
}

.hero-text-block p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 35px;
    max-width: 520px;
}

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

.cta-hero:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-left: -40px;
    margin-top: -60px;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    object-fit: cover;
}

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

.intro-left {
    flex: 0.9;
    background: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
}

.intro-left img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.intro-right-offset {
    flex: 1.1;
    padding-left: 40px;
    margin-top: 60px;
}

.intro-right-offset h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a252f;
}

.intro-right-offset p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.link-arrow {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.services-grid-irregular {
    padding: 100px 5%;
    background: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-header h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a252f;
}

.services-header p {
    font-size: 20px;
    color: #5a6c7d;
}

.service-card {
    display: flex;
    margin-bottom: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.card-large {
    flex-direction: row;
}

.card-offset {
    flex-direction: row-reverse;
    margin-left: 80px;
}

.card-small {
    max-width: 500px;
    flex-direction: column;
}

.card-wide {
    flex-direction: row;
    margin-right: 80px;
}

.card-elevated {
    max-width: 600px;
    flex-direction: column;
    margin-left: auto;
    margin-top: 40px;
}

.card-image {
    flex: 1;
    background: #dfe6e9;
    min-height: 280px;
}

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

.card-content {
    flex: 1;
    padding: 35px;
}

.card-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a252f;
}

.card-content p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.btn-service {
    padding: 12px 28px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.form-section-offset {
    display: flex;
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    align-items: flex-start;
}

.form-container {
    flex: 1.2;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a252f;
}

.form-container > p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    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: #3498db;
}

.btn-submit {
    padding: 16px 40px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.form-image-overlap {
    flex: 0.8;
    margin-top: 80px;
    margin-left: -40px;
    background: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
}

.form-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.testimonials-scattered {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
    background: #f8f9fa;
}

.testimonials-scattered h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    max-width: 380px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-card.pos-1 {
    margin-top: 0;
}

.testimonial-card.pos-2 {
    margin-top: 40px;
}

.testimonial-card.pos-3 {
    margin-top: 80px;
}

.testimonial-card p {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #3498db;
}

.cta-final-irregular {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
}

.cta-block-left {
    flex: 1;
    color: #ffffff;
}

.cta-block-left h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-block-left p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-large {
    display: inline-block;
    padding: 18px 45px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-image-right {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
}

.cta-image-right img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.footer-asymmetric {
    background: #1a252f;
    color: #ecf0f1;
    padding: 60px 5% 30px;
}

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

.footer-block h3,
.footer-block h4 {
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

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

.footer-block a:hover {
    color: #3498db;
}

.footer-block p {
    color: #b2bec3;
    line-height: 1.8;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 14px;
    color: #b2bec3;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1400px;
    margin: 0 auto;
    color: #b2bec3;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background: #229954;
}

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

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.about-hero-offset {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.about-text-primary {
    flex: 1.2;
}

.about-text-primary h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a252f;
}

.about-text-primary p {
    font-size: 19px;
    color: #5a6c7d;
    line-height: 1.7;
}

.about-image-corner {
    flex: 0.8;
    background: #ecf0f1;
    padding: 25px;
    border-radius: 8px;
    margin-top: -40px;
}

.about-image-corner img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.story-irregular {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.story-block {
    margin-bottom: 60px;
}

.story-block.left-align {
    max-width: 700px;
}

.story-block.full-width {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.story-block h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a252f;
}

.story-block p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 18px;
    line-height: 1.7;
}

.story-image {
    margin-bottom: 60px;
    background: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
}

.story-image.right-offset {
    max-width: 650px;
    margin-left: auto;
    margin-right: 0;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.values-cards {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.value-card.card-elevated {
    margin-top: 40px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

.value-card p {
    font-size: 16px;
    color: #5a6c7d;
}

.team-asymmetric {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 12px;
}

.team-asymmetric h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

.team-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-text {
    flex: 1.2;
}

.team-text p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.team-image {
    flex: 0.8;
    background: #dfe6e9;
    padding: 25px;
    border-radius: 8px;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.cta-about {
    text-align: center;
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.cta-about h2 {
    font-size: 42px;
    margin-bottom: 35px;
    color: #1a252f;
}

.services-hero {
    text-align: center;
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #1a252f;
}

.services-hero p {
    font-size: 22px;
    color: #5a6c7d;
}

.services-detailed {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.service-detail-card.left-emphasis {
    flex-direction: row;
}

.service-detail-card.right-emphasis {
    flex-direction: row-reverse;
}

.service-detail-card.centered {
    flex-direction: column;
    align-items: center;
}

.service-detail-card.asymmetric-layout {
    flex-direction: row;
    align-items: flex-start;
}

.service-detail-card.premium-card {
    flex-direction: column;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 60px;
    border-radius: 12px;
    color: #ffffff;
    position: relative;
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.3);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.service-detail-image {
    flex: 1;
    background: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
}

.service-detail-image.offset-top {
    margin-top: -40px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content.full-width {
    width: 100%;
}

.service-detail-content.centered-content {
    text-align: center;
}

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a252f;
}

.premium-card .service-detail-content h2 {
    color: #ffffff;
}

.price-large {
    font-size: 42px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.premium-card .price-large {
    color: #ffffff;
}

.price-period {
    font-size: 24px;
    font-weight: 400;
    color: #5a6c7d;
}

.feature-list {
    list-style: none;
    margin: 25px 0;
}

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 17px;
    color: #5a6c7d;
}

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

.premium-card .feature-list li {
    color: rgba(255,255,255,0.95);
}

.premium-card .feature-list li:before {
    color: #ffffff;
}

.service-features-grid {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 200px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a252f;
}

.feature-item p {
    font-size: 16px;
    color: #5a6c7d;
}

.premium-features {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.premium-column {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.premium-column h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #ffffff;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 10px;
}

.premium-column ul {
    list-style: none;
}

.premium-column li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: rgba(255,255,255,0.95);
}

.premium-column li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: 700;
}

.premium-btn {
    background: #ffffff;
    color: #f5576c;
}

.premium-btn:hover {
    background: rgba(255,255,255,0.9);
}

.services-form-section {
    padding: 100px 5%;
    background: #f8f9fa;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #1a252f;
}

.form-wrapper > p {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.contact-hero {
    text-align: center;
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #1a252f;
}

.contact-hero p {
    font-size: 22px;
    color: #5a6c7d;
}

.contact-content-split {
    display: flex;
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.info-card h2,
.info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

.info-card p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.info-note {
    font-size: 15px;
    font-style: italic;
    margin-top: 10px;
}

.highlight-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.highlight-card h3,
.highlight-card p {
    color: #ffffff;
}

.highlight-card a {
    color: #ffffff;
    text-decoration: underline;
}

.contact-visual {
    flex: 0.8;
    background: #ecf0f1;
    padding: 25px;
    border-radius: 8px;
    margin-top: 60px;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.additional-info {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 12px;
}

.additional-info h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-item {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.info-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a252f;
}

.info-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.info-item a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.success-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a252f;
}

.thanks-message {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.selected-service {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 18px;
    color: #27ae60;
    font-weight: 600;
}

.next-steps {
    margin: 60px 0;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a252f;
}

.steps-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 250px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a252f;
}

.step p {
    font-size: 16px;
    color: #5a6c7d;
}

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

.additional-info-box {
    background: #fff3cd;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
}

.additional-info-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #856404;
}

.additional-info-box p {
    font-size: 17px;
    color: #856404;
}

.legal-content {
    padding: 100px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a252f;
}

.last-updated {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 40px;
    font-style: italic;
}

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

.legal-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.legal-section h3 {
    font-size: 24px;
    margin: 25px 0 15px;
    color: #2c3e50;
}

.legal-section p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 20px 0 20px 30px;
}

.legal-section li {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section strong {
    color: #2c3e50;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #dfe6e9;
}

.cookies-table th {
    background: #ecf0f1;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #5a6c7d;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        text-align: center;
    }

    .hero-text-block {
        padding-right: 0;
    }

    .hero-image-overlap {
        margin-left: 0;
        margin-top: 40px;
    }

    .intro-asymmetric {
        flex-direction: column;
    }

    .intro-right-offset {
        padding-left: 0;
        margin-top: 0;
    }

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

    .form-section-offset {
        flex-direction: column;
    }

    .form-image-overlap {
        margin-top: 40px;
        margin-left: 0;
    }

    .cta-final-irregular {
        flex-direction: column;
    }

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

    .contact-content-split {
        flex-direction: column;
    }

    .contact-visual {
        margin-top: 0;
    }
}

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

    .hamburger {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .hero-text-block h1 {
        font-size: 38px;
    }

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

    .intro-right-offset h2,
    .services-header h2,
    .testimonials-scattered h2,
    .cta-block-left h2 {
        font-size: 32px;
    }

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

    .card-large,
    .card-offset,
    .card-wide {
        flex-direction: column;
    }

    .testimonial-card.pos-1,
    .testimonial-card.pos-2,
    .testimonial-card.pos-3 {
        margin-top: 0;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .values-cards {
        flex-direction: column;
    }

    .value-card.card-elevated {
        margin-top: 0;
    }

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

    .premium-features {
        flex-direction: column;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

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

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