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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

.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: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.ad-label {
    background: #fff3cd;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #856404;
    border: 1px solid #ffeeba;
}

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

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

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

.hero-visual {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

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

.hero-overlay h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.25rem;
    color: #fff;
    max-width: 600px;
    opacity: 0.95;
}

.intro-cards {
    padding: 60px 0;
    background: #fff;
}

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

.intro-card {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.card-content p {
    color: #5a6c7d;
    line-height: 1.7;
}

.service-highlight {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ecf0f1 0%, #fff 100%);
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.split-text p {
    margin-bottom: 18px;
    color: #5a6c7d;
    line-height: 1.8;
}

.split-visual {
    flex: 1;
    min-width: 300px;
}

.split-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    object-fit: cover;
}

.services-preview {
    padding: 80px 0;
    background: #fff;
}

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

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

.service-module {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-module:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.module-icon {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ecf0f1;
}

.module-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-module h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-module p {
    color: #5a6c7d;
    margin-bottom: 18px;
    flex-grow: 1;
    line-height: 1.7;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 15px;
}

.btn-primary {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    cursor: pointer;
    border: none;
}

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

.btn-secondary {
    display: inline-block;
    background: #95a5a6;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    cursor: pointer;
    border: none;
}

.btn-secondary:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

.btn-select {
    background: #9b59b6;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
}

.btn-select:hover {
    background: #8e44ad;
    transform: translateY(-2px);
}

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

.contact-form-section h2 {
    text-align: center;
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.contact-form-section > .container-narrow > p {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    opacity: 0.95;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

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

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

.form-row input,
.form-row select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background: #27ae60;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
}

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

.disclaimer-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.disclaimer-text {
    text-align: center;
    color: #5a6c7d;
    font-size: 0.9rem;
    line-height: 1.7;
    font-style: italic;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

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

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

.footer-col h4 {
    margin-bottom: 15px;
    color: #fff;
}

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

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

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

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

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

.btn-accept {
    background: #27ae60;
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-reject {
    background: #95a5a6;
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.page-header {
    background: linear-gradient(135deg, #3498db 0%, #8e44ad 100%);
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

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

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

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

.service-detail-content p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #5a6c7d;
    line-height: 1.6;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-pricing {
    margin-bottom: 20px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-right: 8px;
}

.price-period {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.cta-services {
    padding: 60px 0;
    background: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%);
    text-align: center;
}

.cta-services h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-services p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.about-intro {
    padding: 60px 0;
    background: #fff;
}

.about-intro h1 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.about-intro-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.8;
}

.about-visual {
    flex: 1;
    min-width: 300px;
}

.about-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    object-fit: cover;
}

.mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #fff;
}

.mission-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-align: center;
}

.mission-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 18px;
    opacity: 0.95;
}

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

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.approach-section {
    padding: 80px 0;
    background: #fff;
}

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

.team-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.team-section p {
    text-align: center;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    background-color: #ecf0f1;
}

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

.cta-about {
    padding: 60px 0;
    background: linear-gradient(135deg, #16a085 0%, #27ae60 100%);
    text-align: center;
}

.cta-about h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-about p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.contact-page {
    padding: 60px 0;
    background: #fff;
}

.contact-page h1 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.contact-layout {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-detail {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-detail p {
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-image {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    background-color: #ecf0f1;
}

.contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.contact-additional {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-additional h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.contact-additional p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-section {
    padding: 80px 0;
    background: #fff;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 30px;
}

.thanks-service {
    background: #e8f8f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    color: #27ae60;
    font-weight: 600;
}

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

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

.thanks-visual img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    object-fit: cover;
}

.next-steps {
    padding: 60px 0;
    background: #f8f9fa;
}

.next-steps h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
}

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

.step-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-page {
    padding: 60px 0;
    background: #fff;
}

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

.legal-date {
    color: #95a5a6;
    margin-bottom: 40px;
    font-style: italic;
}

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

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 15px 0 15px 25px;
}

.legal-page ul li {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.legal-page a:hover {
    text-decoration: underline;
}

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

    .hero-overlay p {
        font-size: 1rem;
    }

    .nav {
        width: 100%;
        justify-content: center;
    }

    .split-layout {
        flex-direction: column;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}