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

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

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    background-color: #ecf0f1;
    border-radius: 4px;
    margin: 0 auto;
}

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

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

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

.hero {
    margin-top: 0;
}

.hero-image {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

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

.hero-overlay p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #3498db;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 15px 40px;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

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

.intro-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.intro-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-card p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
}

.services-grid {
    padding: 100px 0;
    background-color: #ffffff;
}

.services-grid h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.card-content p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-price {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.btn-card {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s;
}

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

.process {
    padding: 100px 0;
    background-color: #ecf0f1;
}

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

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

.process-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    width: calc(25% - 23px);
    min-width: 240px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
    opacity: 0.3;
}

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

.process-card p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.form-wrapper > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.service-display {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: none;
}

.service-display.active {
    display: block;
}

.service-display h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.service-display p {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.testimonials h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.testimonial-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 20px);
    min-width: 300px;
}

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

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
    font-style: normal;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    color: #bdc3c7;
}

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

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

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

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

.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 20px;
    box-shadow: 0 -4px 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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #ecf0f1;
    font-size: 14px;
    margin: 0;
    flex: 1;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.3s;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #ecf0f1;
    border: 2px solid #ecf0f1;
}

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

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

.page-hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.about-content {
    padding: 80px 0;
}

.about-intro-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.about-image {
    width: 45%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.about-text {
    width: 55%;
}

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

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

.values-section {
    margin-bottom: 80px;
}

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

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

.value-card {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    width: calc(50% - 15px);
    min-width: 280px;
}

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

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

.team-section {
    margin-bottom: 80px;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-section p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
    max-width: 900px;
}

.studio-card {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 80px;
}

.studio-card h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.studio-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.studio-image {
    width: 45%;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.studio-text {
    width: 55%;
}

.studio-text p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.mission-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px;
    border-radius: 12px;
    color: #ffffff;
}

.mission-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.mission-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
}

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

.service-content {
    width: 55%;
}

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

.service-price-large {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

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

.service-content ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

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

.service-image {
    width: 45%;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.cta-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.cta-card {
    background: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-info {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-card {
    width: 50%;
}

.contact-card h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-detail h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #3498db;
}

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

.contact-detail .note {
    font-size: 14px;
    color: #95a5a6;
    font-style: italic;
    margin-top: 10px;
}

.contact-map {
    width: 50%;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 8px;
}

.map-overlay p {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.contact-note h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-note p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-note a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.contact-note a:hover {
    text-decoration: underline;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
}

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

.faq-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-confirmation {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: none;
}

.service-confirmation.active {
    display: block;
}

.service-confirmation p {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.service-confirmation strong {
    color: #27ae60;
    font-size: 20px;
}

.thanks-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
}

.step {
    width: calc(33.333% - 20px);
    min-width: 200px;
}

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

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

.thanks-note {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 40px;
    font-style: italic;
}

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

.legal-page {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.legal-updated {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 40px;
}

.legal-content {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3498db;
}

.legal-content p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

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

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

.legal-content strong {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

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

    .cards,
    .process-cards,
    .testimonial-cards,
    .value-cards,
    .next-steps {
        flex-direction: column;
    }

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

    .about-intro-card,
    .studio-content,
    .service-detail-card,
    .contact-grid {
        flex-direction: column;
    }

    .about-image,
    .about-text,
    .studio-image,
    .studio-text,
    .service-content,
    .service-image,
    .contact-card,
    .contact-map {
        width: 100%;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }
}