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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f4f4f4;
    --accent-color: #ff6b35;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-light: rgba(255, 255, 255, 0.9);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-centered {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-asymmetric {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 0 80px;
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie {
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

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

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--primary-color);
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-menu li a {
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--accent-color);
}

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 26px);
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.cta-hero {
    display: inline-block;
    padding: 18px 50px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-hero:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.story-intro {
    padding: 80px 20px;
    background: var(--secondary-color);
}

.story-narrow {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.story-lead {
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.5;
    margin-bottom: 30px;
    color: var(--text-light);
    font-style: italic;
}

.story-narrow p {
    font-size: 18px;
    margin-bottom: 20px;
}

.visual-break {
    padding: 0;
    background: var(--white);
}

.image-grid-offset {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.grid-item {
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    transition: transform 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.grid-item.large img {
    height: 500px;
    object-fit: cover;
}

.problem-amplify {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--white);
}

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

.text-block-left h2 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 800;
}

.text-block-left p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.highlight-text {
    font-size: 24px;
    color: var(--accent-color);
    font-weight: 700;
    margin-top: 40px;
}

.insight-reveal {
    padding: 100px 20px;
    background: var(--secondary-color);
    text-align: center;
}

.section-heading {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 40px;
    font-weight: 800;
}

.insight-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.visual-story {
    position: relative;
    padding: 0;
}

.visual-story-wrapper {
    position: relative;
    height: 600px;
}

.visual-story-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 40px;
    right: 40px;
    background: var(--overlay-light);
    padding: 40px;
    max-width: 500px;
}

.story-text-overlay h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.story-text-overlay p {
    font-size: 16px;
    color: var(--text-dark);
}

.trust-build {
    padding: 100px 20px;
    background: var(--white);
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trust-card {
    padding: 40px;
    background: var(--secondary-color);
    border-left: 4px solid var(--accent-color);
}

.trust-icon {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.trust-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.testimonial-inline {
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--white);
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial-wrapper blockquote {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 5px solid var(--accent-color);
}

.testimonial-wrapper blockquote p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-wrapper cite {
    font-size: 16px;
    font-style: normal;
    color: var(--accent-color);
    font-weight: 600;
}

.cta-mid-flow {
    padding: 80px 20px;
    background: var(--accent-color);
    text-align: center;
    color: var(--white);
}

.cta-mid-content h3 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-mid-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--white);
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.services-pricing {
    padding: 100px 20px;
    background: var(--secondary-color);
}

.section-title-center {
    text-align: center;
    font-size: clamp(36px, 5vw, 52px);
    margin-bottom: 20px;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 3px solid var(--accent-color);
}

.badge-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    padding: 30px 30px 10px;
    font-size: 26px;
    font-weight: 700;
}

.service-card > p {
    padding: 0 30px;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    padding: 0 30px;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
}

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

.service-price {
    padding: 0 30px;
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.btn-select-service {
    display: block;
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 16px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-select-service:hover {
    background: var(--accent-color);
}

.urgency-block {
    padding: 60px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.urgency-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-color);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.urgency-content h3 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 15px;
    font-weight: 800;
}

.urgency-content p {
    font-size: 18px;
}

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

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

.form-container h2 {
    font-size: clamp(32px, 5vw, 44px);
    margin-bottom: 15px;
    font-weight: 800;
}

.form-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

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

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    margin-top: 4px;
    width: 20px;
    height: 20px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.checkbox-group a {
    color: var(--accent-color);
    text-decoration: underline;
}

.btn-submit {
    padding: 18px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.final-cta {
    padding: 100px 20px;
    background: var(--secondary-color);
    text-align: center;
}

.final-cta-content h3 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 30px;
    font-weight: 800;
}

.btn-final {
    display: inline-block;
    padding: 18px 50px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

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

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-btn {
    display: block;
    padding: 16px 30px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.5);
}

.page-hero {
    margin-top: 80px;
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d3d3d 100%);
    text-align: center;
    color: var(--white);
}

.page-hero-content h1 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 900;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 20px;
    font-weight: 300;
}

.about-story {
    padding: 100px 20px;
}

.about-content {
    margin-bottom: 60px;
}

.about-content h2 {
    font-size: clamp(32px, 5vw, 42px);
    margin-bottom: 30px;
    font-weight: 800;
}

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

.about-image {
    margin-top: 40px;
    overflow: hidden;
    border-radius: 8px;
}

.values-section {
    padding: 100px 20px;
    background: var(--secondary-color);
}

.values-section h2 {
    text-align: center;
    font-size: clamp(36px, 5vw, 48px);
    margin-bottom: 60px;
    font-weight: 800;
}

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

.value-item {
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--accent-color);
}

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

.team-section {
    padding: 100px 20px;
}

.team-section h2 {
    text-align: center;
    font-size: clamp(36px, 5vw, 48px);
    margin-bottom: 20px;
    font-weight: 800;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

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

.team-member h4 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
}

.member-role {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
}

.mission-section {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--white);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: clamp(32px, 5vw, 44px);
    margin-bottom: 30px;
    font-weight: 800;
}

.mission-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.services-detail {
    padding: 80px 20px;
}

.service-detail-item {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.service-detail-image {
    overflow: hidden;
    border-radius: 8px;
}

.service-detail-content h2 {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 15px;
    font-weight: 800;
}

.price-large {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

.service-detail-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.detail-list {
    margin-bottom: 30px;
}

.detail-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.5;
}

.detail-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

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

.cta-section {
    padding: 80px 20px;
    background: var(--secondary-color);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 20px;
    font-weight: 800;
}

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

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-cta-large:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-info h2 {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 40px;
    font-weight: 800;
}

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

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--accent-color);
}

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

.contact-item a {
    color: var(--accent-color);
    text-decoration: underline;
}

.map-placeholder {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--overlay-light);
    padding: 20px;
    border-radius: 4px;
}

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

.faq-section {
    padding: 80px 20px;
    background: var(--secondary-color);
}

.faq-section h2 {
    text-align: center;
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 60px;
    font-weight: 800;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.cta-contact {
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-contact h2 {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-contact p {
    font-size: 18px;
    margin-bottom: 30px;
}

.thanks-hero {
    margin-top: 80px;
    padding: 100px 20px;
    background: var(--secondary-color);
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
    font-weight: 800;
}

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

.thanks-details {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.thanks-details p {
    font-size: 16px;
    line-height: 1.6;
}

.thanks-info {
    margin-bottom: 40px;
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
}

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

.step p {
    font-size: 16px;
    line-height: 1.6;
}

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

.thanks-contact p {
    font-size: 16px;
}

.thanks-contact a {
    color: var(--accent-color);
    text-decoration: underline;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.legal-page {
    margin-top: 80px;
    padding: 80px 20px;
}

.legal-page h1 {
    font-size: clamp(32px, 5vw, 44px);
    margin-bottom: 10px;
    font-weight: 800;
}

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

.legal-page h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

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

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

.legal-page a {
    color: var(--accent-color);
    text-decoration: underline;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        gap: 40px;
        position: static;
        padding: 0;
        box-shadow: none;
        background: transparent;
    }

    .nav-menu li a {
        font-size: 16px;
    }

    .image-grid-offset {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .grid-item {
        flex: 1 1 calc(50% - 10px);
    }

    .grid-item.large {
        flex: 1 1 100%;
    }

    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-card {
        flex: 1 1 calc(50% - 20px);
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 20px);
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 calc(50% - 20px);
    }

    .team-grid {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 0 1 300px;
    }

    .service-detail-item {
        flex-direction: row;
    }

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

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

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

    .contact-grid {
        flex-direction: row;
    }

    .contact-info {
        flex: 1;
    }

    .contact-map {
        flex: 1;
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 1 1 calc(50% - 15px);
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .trust-grid {
        flex-wrap: nowrap;
    }

    .trust-card {
        flex: 1;
    }

    .services-grid {
        gap: 30px;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 20px);
    }
}
