* {
    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: #333;
    background: #ffffff;
}

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

.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: 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 {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

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

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

.btn-primary {
    background: #27ae60;
    color: #ffffff;
}

.btn-primary:hover {
    background: #229954;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

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

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

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

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

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

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

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

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

.hero-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(52, 152, 219, 0.75));
    display: flex;
    align-items: center;
}

.hero-text {
    color: #ffffff;
    max-width: 600px;
}

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

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

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

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

.intro-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

.intro-card p {
    color: #7f8c8d;
    line-height: 1.7;
}

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

.services-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 12px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 60px;
}

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

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 340px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #ecf0f1;
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    color: #7f8c8d;
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.7;
}

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

.btn-service {
    width: 100%;
    padding: 14px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-service.selected {
    background: #27ae60;
}

.btn-service.selected:hover {
    background: #229954;
}

.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.form-intro p {
    color: #7f8c8d;
    font-size: 16px;
}

.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 16px;
    border: 2px solid #ecf0f1;
    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: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.why-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.why-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 450px;
    max-width: 550px;
}

.why-card img {
    width: 100%;
    height: 300px;
    display: block;
    background-color: #ecf0f1;
}

.why-content {
    padding: 35px;
}

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

.why-content p {
    color: #7f8c8d;
    line-height: 1.7;
}

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

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

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

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

.footer-column p {
    color: #bdc3c7;
    line-height: 1.7;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #bdc3c7;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 13px;
    opacity: 0.8;
    max-width: 800px;
    margin: 15px auto 0;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.thanks-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 72px;
    margin-bottom: 30px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-card p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-service {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.thanks-service strong {
    color: #2c3e50;
}

.btn-back {
    display: inline-block;
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

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

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

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

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

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

.content-wrapper h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.content-wrapper h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #34495e;
}

.content-wrapper p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 20px 0 20px 40px;
    line-height: 1.8;
}

.content-wrapper li {
    margin-bottom: 10px;
    color: #555;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

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

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

.contact-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    color: #7f8c8d;
    margin: 0;
}

.team-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 60px 0;
}

.team-member {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    background-color: #ecf0f1;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.team-member .role {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.team-member p {
    color: #7f8c8d;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

    .services-grid,
    .intro-grid,
    .why-grid {
        flex-direction: column;
    }

    .service-card,
    .intro-card,
    .why-card {
        min-width: 100%;
        max-width: 100%;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

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