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

:root {
    --primary: #2c3e50;
    --secondary: #e67e22;
    --accent: #d35400;
    --light: #ecf0f1;
    --dark: #34495e;
    --white: #ffffff;
    --gray: #7f8c8d;
    --success: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--primary);
    overflow-x: hidden;
}

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

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--secondary);
    margin-left: 8px;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-section p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 650px;
}

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

.cta-button:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.cta-button-outline {
    background: transparent;
    border: 2px solid var(--white);
    margin-left: 15px;
}

.cta-button-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--light);
}

.section-dark {
    background: var(--primary);
    color: var(--white);
}

.section-accent {
    background: var(--secondary);
    color: var(--white);
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 50px;
    max-width: 700px;
}

.section-dark .section-subtitle,
.section-accent .section-subtitle {
    color: rgba(255,255,255,0.85);
}

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

.service-card {
    background: var(--white);
    padding: 45px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 36px;
}

.service-content {
    flex: 1;
}

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

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 15px;
}

.service-price-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

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

.features-content {
    flex: 1;
}

.features-visual {
    flex: 1;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: rgba(255,255,255,0.3);
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 17px;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: 22px;
    margin-right: 15px;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--white);
    opacity: 0.9;
}

.form-section {
    background: var(--white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    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);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: var(--accent);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: var(--white);
}

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

.contact-details p {
    color: var(--dark);
    line-height: 1.6;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

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

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

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

.cookie-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background: var(--accent);
}

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

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

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

.sticky-cta .cta-button {
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    padding: 18px 35px;
    font-size: 16px;
}

.about-grid {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.about-image {
    flex: 1;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    border-radius: 12px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 150px;
    color: rgba(255,255,255,0.2);
}

.about-content {
    flex: 1;
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

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

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--primary);
}

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

.privacy-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark);
}

.privacy-content ul {
    margin: 20px 0 20px 30px;
}

.privacy-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-message {
    text-align: center;
    padding: 80px 20px;
}

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

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

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    nav ul.show {
        display: flex;
    }

    .hero-section h1 {
        font-size: 36px;
    }

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

    .cta-button-outline {
        margin-left: 0;
        margin-top: 10px;
    }

    .section-title {
        font-size: 32px;
    }

    .features-section,
    .about-grid {
        flex-direction: column;
    }

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

    .service-card {
        flex-direction: column;
        padding: 30px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

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

    .stats-section {
        flex-direction: column;
    }
}
