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

:root {
    --primary-color: #1a2332;
    --secondary-color: #2c5f8d;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a2332;
    --border-color: #e0e0e0;
}

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

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

.main-nav {
    background-color: var(--bg-dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.content-wrapper.narrow {
    max-width: 800px;
}

.content-wrapper.wide {
    max-width: 1400px;
}

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

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85), rgba(44, 95, 141, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.cta-button.large {
    padding: 20px 50px;
    font-size: 20px;
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: var(--text-dark);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid var(--text-dark);
    transition: all 0.3s ease;
    cursor: pointer;
}

.secondary-button:hover {
    background-color: var(--text-dark);
    color: var(--text-light);
}

section {
    padding: 80px 0;
}

.intro-section {
    background-color: #ffffff;
}

.intro-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.intro-section p {
    font-size: 18px;
    color: var(--text-dark);
}

.dark-bg {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.light-bg {
    background-color: var(--bg-light);
}

.feature-section {
    padding: 100px 0;
}

.feature-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.feature-card h3 {
    font-size: 24px;
    margin: 24px 24px 16px;
    color: var(--primary-color);
}

.feature-card p {
    padding: 0 24px 24px;
    color: var(--text-dark);
}

.services-preview {
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    margin-bottom: 16px;
    text-align: center;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-dark);
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 60px;
}

.service-block {
    display: flex;
    gap: 48px;
    align-items: stretch;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.service-block.left-aligned {
    flex-direction: row;
}

.service-block.right-aligned {
    flex-direction: row-reverse;
}

.service-block.center-aligned {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-content {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style-position: inside;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    font-size: 16px;
}

.service-price {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    min-width: 240px;
}

.service-price.inline-price {
    flex-direction: row;
    gap: 24px;
    padding: 24px;
    background-color: transparent;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: block;
}

.service-price.inline-price .price {
    margin-bottom: 0;
    font-size: 36px;
}

.select-service {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #1e4a6d;
    transform: translateY(-2px);
}

.trust-section {
    padding: 80px 0;
}

.trust-section h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.trust-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonials-section {
    background-color: #ffffff;
    padding: 100px 0;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
}

.cta-section {
    padding: 100px 0;
}

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

.cta-section p {
    font-size: 18px;
    margin-bottom: 36px;
}

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

.form-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    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(--secondary-color);
}

.submit-button {
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 16px 48px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 0;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    font-style: italic;
}

.main-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
}

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

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-light);
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.cookie-button {
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-button.accept {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.cookie-button.accept:hover {
    background-color: #d35400;
}

.cookie-button.reject {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

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

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

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

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

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

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

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

.service-detail-block.center-layout {
    flex-direction: column;
    text-align: center;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--bg-light);
}

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

.service-detail-content.full-content {
    max-width: 900px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.service-detail-content h3 {
    font-size: 22px;
    margin: 28px 0 16px;
    color: var(--primary-color);
}

.service-detail-content ul {
    list-style-position: inside;
    margin-bottom: 24px;
}

.service-detail-content li {
    padding: 6px 0;
    font-size: 16px;
}

.custom-solutions-list {
    column-count: 2;
    column-gap: 40px;
}

.add-ons-section {
    padding: 80px 0;
}

.add-ons-section h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: var(--primary-color);
}

.addons-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.addon-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

.addon-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.addon-card p {
    font-size: 16px;
    margin-bottom: 16px;
}

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

.about-intro {
    padding: 80px 0;
}

.about-intro h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.about-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

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

.team-card {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.team-card img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 24px;
    background-color: var(--bg-light);
}

.team-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.team-role {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.team-card p {
    font-size: 15px;
    line-height: 1.6;
}

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

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.value-block {
    padding: 40px;
    background-color: var(--bg-light);
    border-left: 6px solid var(--accent-color);
    border-radius: 4px;
}

.value-block h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-block p {
    font-size: 17px;
    line-height: 1.7;
}

.certifications-section {
    padding: 80px 0;
}

.certifications-section h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.certifications-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.process-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.process-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

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

.process-step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.location-section {
    padding: 80px 0;
}

.location-section h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.location-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.faq-section {
    padding: 100px 0;
}

.faq-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 32px;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #28a745;
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 32px;
}

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

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

.thanks-details {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 48px;
    font-size: 18px;
}

.next-steps {
    margin-bottom: 48px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

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

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

.step-icon {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

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

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

.thanks-contact {
    font-size: 16px;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.updated-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin: 28px 0 16px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

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

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

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .service-block,
    .service-detail-block,
    .contact-layout {
        flex-direction: column;
    }

    .service-block.right-aligned {
        flex-direction: column;
    }

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

    .custom-solutions-list {
        column-count: 1;
    }

    .process-step {
        flex-direction: column;
    }
}