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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #f8f9fa;
}

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

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

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

.header-top {
    background: #34495e;
    color: #ecf0f1;
    padding: 8px 0;
    font-size: 13px;
    text-align: center;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

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

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

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

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

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

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: #ffffff;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 50px;
    max-width: 700px;
}

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

.service-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    gap: 35px;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    fill: #ffffff;
}

.service-content {
    flex: 1;
}

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

.service-card p {
    color: #7f8c8d;
    margin-bottom: 18px;
    line-height: 1.8;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
}

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

.about-text {
    flex: 1;
}

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

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background: #667eea;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.feature-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.feature-text p {
    color: #7f8c8d;
    line-height: 1.7;
}

.contact-section {
    background: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-item p {
    color: #7f8c8d;
    line-height: 1.8;
}

.form-container {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

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

.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: 14px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

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

.submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 16px 45px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

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

.footer-section {
    flex: 1;
}

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

.footer-section p {
    line-height: 1.8;
    color: #bdc3c7;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.disclaimer {
    background: #ecf0f1;
    padding: 30px;
    border-left: 4px solid #667eea;
    margin: 40px 0;
    font-size: 14px;
    line-height: 1.8;
    color: #5a6c7d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

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

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

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

.cookie-button:hover {
    opacity: 0.9;
}

.cookie-accept {
    background: #27ae60;
    color: #ffffff;
}

.cookie-reject {
    background: #95a5a6;
    color: #ffffff;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

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

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

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

.legal-content p {
    margin-bottom: 18px;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

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

.testimonials {
    background: #f8f9fa;
    padding: 70px 0;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #5a6c7d;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: #ffffff;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-section p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

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

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

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

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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