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

.navbar {
    background-color: #1a1a2e;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #95a5a6;
    padding: 0.3rem 0.8rem;
    border-left: 2px solid #95a5a6;
    margin-left: 1rem;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.hero-image {
    flex: 1;
    position: relative;
    background-color: #ecf0f1;
}

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

.intro-section {
    display: flex;
    padding: 5rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-left {
    flex: 1;
    padding: 2rem;
    background-color: #34495e;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-right {
    flex: 1;
    padding: 3rem;
    background-color: #ffffff;
}

.intro-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-right p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.services-showcase {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.services-header p {
    font-size: 1.1rem;
    color: #666;
}

.service-item {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 3rem;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.service-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.service-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
}

.select-service {
    padding: 0.8rem 1.8rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #2980b9;
}

.service-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.contact-form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.form-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro p {
    font-size: 1.05rem;
    color: #666;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    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 {
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    display: flex;
    padding: 5rem 0;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f8f9fa;
}

.trust-left {
    flex: 1;
    padding: 3rem;
}

.trust-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.trust-left p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.trust-right {
    flex: 1;
    background-color: #ecf0f1;
}

.trust-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p,
.footer-col ul {
    font-size: 0.9rem;
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px 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: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.8;
}

.page-hero-split {
    display: flex;
    min-height: 50vh;
    align-items: center;
}

.hero-text {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #1a1a2e;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: #bdc3c7;
}

.hero-visual {
    flex: 1;
    background-color: #ecf0f1;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 0;
}

.story-left {
    flex: 1;
    padding: 2rem 3rem;
}

.story-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-left p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.story-right {
    flex: 1;
    background-color: #ecf0f1;
}

.story-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-approach {
    display: flex;
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.approach-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.approach-content {
    flex: 1;
    padding: 3rem;
}

.approach-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.approach-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.team-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

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

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.role {
    font-size: 0.9rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.95rem;
    color: #666;
}

.values-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 0;
}

.values-content {
    flex: 1;
    padding: 3rem;
    background-color: #ecf0f1;
}

.values-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.value-item p {
    font-size: 1rem;
    color: #555;
}

.values-image {
    flex: 1;
    background-color: #34495e;
}

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

.cta-about {
    background-color: #3498db;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content-centered {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content-centered p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-2px);
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-item {
    display: flex;
    margin-bottom: 4rem;
    gap: 2rem;
}

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

.service-detail-content {
    flex: 1;
    padding: 2rem;
}

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

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
}

.service-detail-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.8rem;
    color: #555;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.services-cta {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-hero {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #bdc3c7;
}

.contact-main {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 0;
}

.contact-info {
    flex: 1;
    padding: 2rem 3rem;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.info-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.contact-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.contact-additional {
    display: flex;
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.additional-left {
    flex: 1;
    padding: 3rem;
}

.additional-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.additional-left p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.additional-right {
    flex: 1;
    background-color: #ecf0f1;
}

.additional-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-container p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.service-confirmation p {
    margin: 0;
    font-size: 1.05rem;
    color: #2c3e50;
}

.btn-back {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.btn-back:hover {
    background-color: #2980b9;
}

.legal-page {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-container p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container li {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: #555;
    line-height: 1.7;
}

.gdpr-table,
.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.gdpr-table th,
.gdpr-table td,
.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #ddd;
}

.gdpr-table th,
.cookie-table th {
    background-color: #34495e;
    color: #ffffff;
    font-weight: 600;
}

.gdpr-table td,
.cookie-table td {
    background-color: #f8f9fa;
    color: #555;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-section,
    .service-item,
    .trust-section,
    .about-story,
    .about-approach,
    .values-split,
    .contact-main,
    .contact-additional,
    .service-detail-item,
    .page-hero-split {
        flex-direction: column;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.85rem;
    }

    .ad-notice {
        flex-basis: 100%;
        margin-left: 0;
        margin-top: 0.5rem;
        border-left: none;
        border-top: 2px solid #95a5a6;
        padding-top: 0.5rem;
    }

    .hero-content h1,
    .hero-text h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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