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

:root {
    --primary-color: #2d5a8c;
    --secondary-color: #4a90d9;
    --accent-color: #f47c3c;
    --dark-color: #1a2332;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --text-color: #212529;
    --border-color: #dee2e6;
    --success-color: #28a745;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 16px;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--accent-color);
}

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

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

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

.btn-cookie:hover {
    background: #d96a2e;
}

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

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

.navbar {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

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

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

.hero-section {
    background: linear-gradient(135deg, #e8f0f7 0%, #f8f9fa 100%);
    padding: 80px 0;
}

.hero-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-visual {
    flex: 1;
}

.hero-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.btn-primary,
.btn-primary-large {
    display: inline-block;
    padding: 16px 36px;
    background: var(--accent-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover,
.btn-primary-large:hover {
    background: #d96a2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 124, 60, 0.3);
}

.btn-primary-large {
    padding: 20px 48px;
    font-size: 18px;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.intro-section {
    padding: 80px 0;
    background: white;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--dark-color);
    line-height: 1.3;
}

.intro-section p {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.problem-section {
    padding: 80px 0;
    background: var(--light-color);
}

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

.split-content.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

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

.split-text p {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.benefits-section {
    padding: 90px 0;
    background: white;
}

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

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

.benefit-card {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.benefit-card p {
    color: var(--gray-color);
    line-height: 1.6;
}

.trust-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.testimonial cite {
    font-style: normal;
    color: var(--gray-color);
    font-weight: 600;
}

.services-section {
    padding: 90px 0;
    background: var(--light-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 50px;
    margin-top: -30px;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

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

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-description {
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 8px;
}

.btn-service,
.btn-service-large {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover,
.btn-service-large:hover {
    background: var(--secondary-color);
}

.btn-service-large {
    padding: 18px;
    font-size: 18px;
}

.form-section {
    padding: 80px 0;
    background: white;
}

.form-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 40px;
}

.contact-form {
    background: var(--light-color);
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px 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 {
    width: 100%;
    padding: 18px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.guarantee-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
}

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

.guarantee-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.guarantee-box p {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.7;
}

.cta-final-section {
    padding: 90px 0;
    background: var(--dark-color);
    color: white;
    text-align: center;
}

.cta-final-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-final-section p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.footer {
    background: #1a1a1a;
    color: #c4c4c4;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

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

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

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

.footer-col ul li a {
    color: #c4c4c4;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

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

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(244, 124, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(244, 124, 60, 0.5);
}

.page-hero,
.page-hero-small {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.page-hero-small {
    padding: 60px 0;
}

.page-hero h1,
.page-hero-small h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.content-section {
    padding: 80px 0;
    background: white;
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

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

.mission-section {
    padding: 80px 0;
    background: var(--light-color);
}

.values-section {
    padding: 80px 0;
    background: white;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background: var(--light-color);
    border-radius: 10px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--gray-color);
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background: var(--light-color);
}

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

.team-member {
    flex: 0 1 280px;
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-member p {
    color: var(--gray-color);
    font-size: 15px;
}

.stats-section {
    padding: 80px 0;
    background: white;
}

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

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray-color);
}

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

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.services-intro {
    padding: 60px 0;
    background: white;
}

.services-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.services-intro p {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.services-detailed {
    padding: 40px 0 80px;
    background: white;
}

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

.service-detail:nth-child(odd) {
    background: var(--light-color);
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

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

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

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

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

.badge-inline {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-description-long {
    font-size: 17px;
    color: var(--gray-color);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--dark-color);
}

.service-features-detailed {
    list-style: none;
    margin-bottom: 30px;
}

.service-features-detailed li {
    padding: 12px 0;
    color: var(--text-color);
    font-size: 16px;
}

.service-features-detailed li::before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 10px;
}

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

.service-detail-image img {
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

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

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--dark-color);
}

.faq-item {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

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

.faq-item p {
    color: var(--gray-color);
    line-height: 1.6;
}

.contact-info-section {
    padding: 80px 0;
    background: white;
}

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

.contact-info-box {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 40px 30px;
    background: var(--light-color);
    border-radius: 10px;
}

.contact-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.contact-info-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-info-box p {
    color: var(--gray-color);
    margin-bottom: 10px;
}

.contact-info-box a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    font-style: italic;
}

.map-section {
    padding: 80px 0;
    background: var(--light-color);
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark-color);
}

.map-placeholder {
    background: white;
    padding: 80px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.map-placeholder p {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.map-note {
    font-size: 16px;
    color: var(--gray-color);
}

.contact-cta-section {
    padding: 80px 0;
    background: white;
}

.contact-cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--dark-color);
}

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

.thanks-section {
    padding: 100px 0;
    background: white;
    text-align: center;
}

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

.thanks-section h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.thanks-message {
    font-size: 20px;
    color: var(--gray-color);
    margin-bottom: 40px;
}

.thanks-service-info {
    background: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-service-info p {
    font-size: 18px;
    color: var(--text-color);
}

.thanks-next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.thanks-next-steps ol {
    padding-left: 25px;
}

.thanks-next-steps li {
    margin-bottom: 15px;
    font-size: 17px;
    color: var(--gray-color);
    line-height: 1.6;
}

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

.thanks-testimonial {
    padding: 60px 0;
    background: var(--light-color);
}

.policy-content {
    padding: 60px 0;
    background: white;
}

.policy-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--dark-color);
}

.policy-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--dark-color);
}

.policy-content p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.7;
}

.policy-content ul {
    margin-bottom: 20px;
    padding-left: 40px;
}

.policy-content li {
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.6;
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        border-top: 1px solid var(--border-color);
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-section .container,
    .split-content,
    .split-content.reverse,
    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 32px;
    }

    .section-title-center,
    .content-section h2,
    .mission-section h2 {
        font-size: 28px;
    }

    .services-grid,
    .benefits-grid,
    .values-grid {
        flex-direction: column;
    }

    .service-card,
    .benefit-card,
    .value-card {
        min-width: 100%;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

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

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

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

    .service-detail:nth-child(odd) {
        margin-left: 0;
        margin-right: 0;
        padding-left: 20px;
        padding-right: 20px;
    }

    .service-price-large {
        font-size: 32px;
    }
}
