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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

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

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.main-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.ad-notice {
    background: #f39c12;
    color: #ffffff;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 4px;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 40px;
    max-width: 800px;
    text-align: center;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    line-height: 1.6;
}

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

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

.intro-block {
    background: #ecf0f1;
}

.intro-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.services-preview {
    background: #ffffff;
}

.services-preview h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: calc(33.333% - 20px);
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-card h3 {
    font-size: 24px;
    margin: 20px 20px 15px 20px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 20px;
    color: #34495e;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    padding: 20px;
}

.service-select {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.service-select:hover {
    background: #2980b9;
}

.technology-timeline {
    background: #34495e;
    color: #ffffff;
}

.technology-timeline h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-year {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    min-width: 100px;
}

.timeline-item p {
    font-size: 18px;
    line-height: 1.6;
}

.cta-block-dark {
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
}

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

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

.btn-large {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-large:hover {
    background: #2980b9;
}

.scroll-to-form {
    text-decoration: none;
    display: inline-block;
}

.contact-form-section {
    background: #ecf0f1;
}

.contact-form-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-primary {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    background: #95a5a6;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.disclaimer-section {
    background: #fff3cd;
    border-left: 4px solid #f39c12;
}

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

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px 20px;
}

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

.footer-column a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    max-width: 1200px;
    margin: 0 auto;
}

.page-header {
    background: #34495e;
    color: #ffffff;
    text-align: center;
}

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

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

.about-story {
    background: #ffffff;
}

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

.story-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.expertise-section {
    background: #ecf0f1;
}

.expertise-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.expertise-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.values-block {
    background: #ffffff;
}

.values-block h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    color: #34495e;
}

.team-approach {
    background: #34495e;
    color: #ffffff;
}

.team-approach h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.team-approach p {
    font-size: 18px;
    margin-bottom: 20px;
}

.team-list {
    list-style: none;
    margin: 30px 0;
}

.team-list li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.team-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 24px;
}

.cta-simple {
    background: #ecf0f1;
    text-align: center;
}

.cta-simple h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-simple p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #34495e;
}

.cta-simple a {
    text-decoration: none;
}

.services-detailed {
    background: #ffffff;
}

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

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.service-detail-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #34495e;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.price-label {
    font-size: 18px;
    color: #7f8c8d;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.contact-cta {
    background: #ecf0f1;
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.contact-cta a {
    text-decoration: none;
}

.contact-info-section {
    background: #ffffff;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.8;
}

.hours-note {
    margin-top: 10px;
    font-style: italic;
    color: #7f8c8d;
}

.contact-image-block {
    flex: 1;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.response-time-info {
    background: #ecf0f1;
}

.response-time-info h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.response-time-info p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.service-areas {
    background: #ffffff;
}

.service-areas h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.service-areas p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.areas-list {
    list-style: none;
    margin: 30px 0;
}

.areas-list li {
    font-size: 18px;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: #34495e;
}

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

.form-redirect-cta {
    background: #ecf0f1;
    text-align: center;
}

.form-redirect-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-redirect-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #34495e;
}

.form-redirect-cta a {
    text-decoration: none;
}

.thanks-section {
    background: #ffffff;
    min-height: 60vh;
}

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

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

.thanks-content > p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #34495e;
}

.confirmation-details {
    background: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.confirmation-details h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.confirmation-details p {
    font-size: 20px;
    color: #3498db;
    font-weight: 600;
}

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

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.next-steps ol li {
    font-size: 18px;
    margin-bottom: 15px;
    color: #34495e;
    line-height: 1.6;
}

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

.thanks-actions a {
    text-decoration: none;
}

.legal-page {
    background: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.8;
}

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

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #34495e;
    line-height: 1.6;
}

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

.legal-page a:hover {
    color: #2980b9;
}

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

    .hero-overlay p {
        font-size: 16px;
    }

    .service-card {
        width: 100%;
    }

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

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

    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }

    .navigation {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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