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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0dcd6;
    --accent-warm: #c89b6e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 24px;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
}

.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-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 28px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-cookie:hover {
    background-color: var(--accent-warm);
}

.btn-cookie-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 12px 28px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-cookie-secondary:hover {
    background-color: white;
    color: var(--text-dark);
}

.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 12px;
    color: var(--text-light);
    background-color: var(--bg-light);
    padding: 6px 12px;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-left p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

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

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

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

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

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

.intro-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.benefits-asymmetric {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.benefits-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.benefit-large {
    flex: 2;
    min-width: 400px;
}

.benefit-medium {
    flex: 1.2;
    min-width: 320px;
}

.benefit-small {
    flex: 0.8;
    min-width: 280px;
}

.benefit-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.benefit-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 24px;
    background-color: var(--border-color);
}

.services-highlight {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

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

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-item {
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    flex: 0 1 380px;
    display: flex;
    flex-direction: column;
}

.service-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: var(--border-color);
}

.service-item h3 {
    font-size: 24px;
    margin: 28px 28px 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 28px 16px;
}

.service-item .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 28px 16px;
}

.service-item .link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin: 0 28px 28px;
    font-size: 15px;
    transition: color 0.3s;
}

.service-item .link-arrow:hover {
    color: var(--secondary-color);
}

.cta-inline {
    padding: 100px 40px;
    background-color: var(--primary-color);
}

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

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 40px;
    color: white;
    margin-bottom: 24px;
    font-weight: 700;
}

.cta-left p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.cta-right {
    flex: 1;
}

.quick-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
}

.quick-form h3 {
    font-size: 28px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.quick-form input,
.quick-form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.quick-form button {
    width: 100%;
}

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

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

.trust-container h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.testimonial {
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
    border-left: 4px solid var(--secondary-color);
}

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

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

.final-info {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

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

.info-block {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.info-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.info-text .btn-secondary {
    margin-top: 16px;
}

.main-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 40px 30px;
}

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

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

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

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.page-hero {
    background-color: var(--bg-light);
    padding: 80px 40px;
    text-align: center;
}

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

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

.about-split {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.about-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    max-height: 500px;
}

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

.values-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
}

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

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

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

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

.team-intro h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.team-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 60px;
}

.team-stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.5;
}

.approach-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

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

.approach-steps {
    max-width: 1200px;
    margin: 0 auto;
}

.step-row {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.step-reverse {
    flex-direction: row-reverse;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.step-visual {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.step-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.cta-section {
    padding: 80px 40px;
    background-color: var(--primary-color);
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 24px;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    line-height: 1.7;
}

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

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

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

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

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

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.service-features li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

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

.service-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 20px;
}

.service-detail-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    max-height: 500px;
}

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

.pricing-cta {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.pricing-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-white);
    padding: 60px 40px;
    border-radius: 8px;
}

.pricing-box h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.contact-content {
    padding: 60px 40px;
    background-color: var(--bg-white);
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.contact-map {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.map-info {
    background-color: var(--bg-white);
    padding: 24px;
}

.map-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    flex: 1;
    min-width: 320px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.thanks-container {
    padding: 100px 40px;
    background-color: var(--bg-light);
    min-height: 60vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-white);
    padding: 60px 40px;
    border-radius: 8px;
}

.thanks-content h1 {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-content > p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.thanks-info p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 12px;
}

.thanks-info p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.thanks-next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

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

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

.legal-page h1 {
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 44px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.legal-content ul {
    margin: 16px 0 24px 24px;
}

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

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

.legal-content a:hover {
    color: var(--secondary-color);
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        flex: none;
    }

    .hero-right {
        min-height: 400px;
    }

    .intro-split,
    .about-content,
    .info-wrapper,
    .cta-content-split,
    .service-detail,
    .contact-split {
        flex-direction: column;
    }

    .step-row,
    .step-reverse {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
    }
}

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

    .hero-left p {
        font-size: 17px;
    }

    .intro-text h2,
    .about-text h2,
    .info-text h2 {
        font-size: 32px;
    }

    .services-highlight h2,
    .trust-container h2,
    .approach-section h2,
    .values-section h2 {
        font-size: 34px;
    }

    .page-hero h1 {
        font-size: 40px;
    }

    .nav-container {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    .benefits-wrapper {
        flex-direction: column;
    }

    .benefit-large,
    .benefit-medium,
    .benefit-small {
        min-width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie,
    .btn-cookie-secondary {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .hero-left,
    .intro-section,
    .benefits-asymmetric,
    .services-highlight,
    .trust-section,
    .final-info,
    .cta-inline {
        padding: 60px 24px;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}