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

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;
}

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px 0;
    position: sticky;
    top: 37px;
    z-index: 999;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

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

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

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

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-image {
    margin-top: 40px;
}

.hero-image img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.intro-cards h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.feature-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 300px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-card img {
    width: 100%;
    height: 200px;
    background-color: #e0e7ee;
}

.feature-card h3 {
    padding: 20px 20px 10px;
    color: #2c3e50;
    font-size: 22px;
}

.feature-card p {
    padding: 0 20px 20px;
    color: #5a6c7d;
    font-size: 15px;
    line-height: 1.6;
}

.services-overview {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

.services-overview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #5a6c7d;
}

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

.service-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

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

.service-icon img {
    width: 100%;
    height: 220px;
    background-color: #dfe6ed;
}

.service-card h3 {
    padding: 25px 25px 15px;
    color: #2c3e50;
    font-size: 22px;
}

.service-card p {
    padding: 0 25px;
    color: #5a6c7d;
    font-size: 15px;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: #27ae60;
    padding: 20px 25px 10px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 32px;
    margin: 20px 25px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.cta-button-secondary {
    display: inline-block;
    background: #fff;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 14px 32px;
    margin: 20px 25px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
    font-size: 16px;
}

.cta-button-secondary:hover {
    background: #667eea;
    color: white;
}

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

.form-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-section > .container > p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #5a6c7d;
    font-size: 16px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.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;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.contact-form .cta-button {
    width: 100%;
    margin: 10px 0 0;
}

.trust-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.trust-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.testimonial-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    width: calc(33.333% - 20px);
    min-width: 280px;
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    text-align: right;
}

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

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

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

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

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

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

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

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

.footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 20px;
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.8;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.page-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
    background-color: #fff;
}

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

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

.about-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

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

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: #dfe6ed;
}

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

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

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

.value-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    width: calc(33.333% - 20px);
    min-width: 280px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

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

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

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

.team-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: #5a6c7d;
    line-height: 1.8;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: #dfe6ed;
}

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

.service-block {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

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

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: #dfe6ed;
}

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

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-price-large {
    font-size: 42px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 20px;
}

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

.service-info ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-info ul li {
    margin-bottom: 10px;
    color: #5a6c7d;
    line-height: 1.6;
}

.process-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

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

.process-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    width: calc(25% - 23px);
    min-width: 240px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.process-step p {
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-page-content {
    padding: 80px 0;
    background-color: #fff;
}

.contact-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

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

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

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

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

.contact-note {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    color: #5a6c7d;
    font-size: 15px;
    line-height: 1.6;
}

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

.contact-image-block img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: #dfe6ed;
}

.map-placeholder {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.map-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.map-info p {
    color: #5a6c7d;
    line-height: 1.8;
}

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

.thanks-section .container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.thanks-content {
    flex: 1;
    min-width: 300px;
}

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

.thanks-content > p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

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

.thanks-next-steps {
    margin-bottom: 30px;
}

.thanks-next-steps h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.thanks-next-steps ul {
    padding-left: 20px;
}

.thanks-next-steps ul li {
    margin-bottom: 10px;
    color: #5a6c7d;
    line-height: 1.6;
}

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

.thanks-actions .cta-button,
.thanks-actions .cta-button-secondary {
    margin: 0;
}

.thanks-image {
    flex: 1;
    min-width: 300px;
}

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: #dfe6ed;
}

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

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

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

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #34495e;
}

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

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

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

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

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .card-grid,
    .services-grid,
    .testimonials-grid,
    .values-grid,
    .process-steps {
        flex-direction: column;
    }

    .feature-card,
    .service-card,
    .testimonial-card,
    .value-card,
    .process-step {
        width: 100%;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}