:root {
    --color-primary: #6b46c1;
    --color-primary-dark: #553c9a;
    --color-secondary: #2d3748;
    --color-accent: #ed8936;
    --color-text: #1a202c;
    --color-text-light: #4a5568;
    --color-bg: #ffffff;
    --color-bg-alt: #f7fafc;
    --color-border: #e2e8f0;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-text);
}

.btn-secondary:hover {
    background: var(--color-bg-alt);
}

.btn-hero {
    background: var(--color-accent);
    color: white;
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-hero:hover {
    background: #dd6b20;
    transform: translateY(-2px);
}

.btn-card {
    background: var(--color-primary);
    color: white;
    padding: 10px 20px;
    font-size: 0.95rem;
}

.btn-card:hover {
    background: var(--color-primary-dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 14px 32px;
}

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

.btn-cta {
    background: white;
    color: var(--color-primary);
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-cta:hover {
    background: var(--color-bg-alt);
    transform: translateY(-2px);
}

.btn-submit {
    background: var(--color-primary);
    color: white;
    width: 100%;
    padding: 14px;
    font-size: 1.05rem;
}

.btn-submit:hover {
    background: var(--color-primary-dark);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-secondary);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
}

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

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

.header {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.ad-disclosure {
    background: var(--color-bg-alt);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: var(--color-text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    max-width: 700px;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.intro-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.intro-text p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.intro-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.services-preview {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--color-secondary);
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-secondary);
}

.card-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.card-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

.features-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.features-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-block {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
}

.feature-icon {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.feature-block h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-secondary);
}

.feature-block p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.testimonials-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-primary);
}

.testimonial-card p {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-card cite {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.cta-section {
    padding: 80px 0;
    background: var(--color-primary);
}

.cta-box {
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.form-info p {
    color: var(--color-text-light);
    font-size: 1.05rem;
}

.contact-form {
    flex: 1;
    background: var(--color-bg-alt);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

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

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

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-links,
.footer-legal,
.footer-contact {
    flex: 1;
    min-width: 150px;
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
}

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

.footer ul a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer ul a:hover {
    color: white;
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

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

.disclaimer {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    line-height: 1.6;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.page-header {
    background: var(--color-secondary);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

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

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.content-section p {
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.content-section ul li {
    color: var(--color-text-light);
    margin-bottom: 8px;
    list-style: disc;
}

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

.service-full-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    align-items: center;
}

.service-full-card:nth-child(even) {
    flex-direction: row-reverse;
    background: white;
    border: 1px solid var(--color-border);
}

.service-full-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
}

.service-full-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

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

.service-full-content h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.service-full-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.service-full-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.service-full-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-light);
}

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

.about-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.about-text p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.team-section {
    padding: 60px 0;
    background: var(--color-bg-alt);
}

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

.team-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    background: var(--color-primary);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--color-secondary);
}

.team-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

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

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-block {
    margin-bottom: 30px;
}

.contact-block h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-secondary);
}

.contact-block p {
    color: var(--color-text-light);
}

.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
}

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

.thanks-content {
    max-width: 500px;
}

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

.thanks-icon svg {
    color: white;
}

.thanks-content h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.thanks-content p {
    color: var(--color-text-light);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid var(--color-border);
    }

    .hamburger {
        display: flex;
    }

    .ad-disclosure {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .intro-grid,
    .form-wrapper,
    .about-grid,
    .contact-grid {
        flex-direction: column;
    }

    .service-full-card,
    .service-full-card:nth-child(even) {
        flex-direction: column;
    }

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

    .service-card {
        min-width: 100%;
    }

    .features-wrapper {
        flex-direction: column;
    }

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

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

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