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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

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

.main-nav a:hover {
    color: #e74c3c;
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #6c757d;
}

.hero-asymmetric {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-offset-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1;
    min-width: 300px;
    padding-left: 3rem;
}

.hero-text-block h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

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

.cta-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.hero-image-container {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(-2rem);
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-offset {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.offset-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.offset-text {
    flex: 1.2;
    min-width: 300px;
}

.offset-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.offset-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.offset-visual {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    transform: translateX(2rem);
}

.offset-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.services-creative {
    padding: 6rem 2rem;
}

.services-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header-offset {
    margin-bottom: 3rem;
    padding-left: 4rem;
}

.services-header-offset h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.services-header-offset p {
    font-size: 1.2rem;
    color: #6c757d;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.service-large {
    flex: 1 1 calc(60% - 1rem);
    min-width: 300px;
}

.service-medium {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
}

.service-small {
    flex: 1 1 calc(40% - 1rem);
    min-width: 300px;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    padding: 2rem;
}

.service-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1rem;
}

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

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

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

.trust-section {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

.trust-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #e74c3c;
}

.trust-item p {
    color: #555;
}

.trust-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    transform: translateX(-2rem);
}

.trust-image img {
    width: 100%;
    height: auto;
    display: block;
}

.form-section {
    padding: 6rem 2rem;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    padding-left: 3rem;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-header p {
    color: #6c757d;
}

.service-form {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #e9ecef;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
    line-height: 1.8;
}

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #e74c3c;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-text-block {
        padding-left: 0;
    }

    .hero-text-block h2 {
        font-size: 2rem;
    }

    .hero-image-container {
        transform: none;
    }

    .offset-visual {
        transform: none;
    }

    .services-header-offset {
        padding-left: 0;
    }

    .service-large,
    .service-medium,
    .service-small {
        flex: 1 1 100%;
    }

    .trust-image {
        transform: none;
    }

    .form-container-offset {
        padding-left: 0;
    }

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