* {
    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: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

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

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

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 10px 22px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

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

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
    color: #ffffff;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.7;
    opacity: 0.9;
}

.hero-right {
    flex: 1;
    background-color: #34495e;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.intro-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.services-preview {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.service-card-left,
.service-card-right {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 60px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.service-card-left {
    flex-direction: row;
}

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

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

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

.service-text {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

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

.trust-section {
    padding: 80px 20px;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.trust-text p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
}

.stat-label {
    font-size: 16px;
    opacity: 0.8;
}

.form-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

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

.form-intro p {
    font-size: 18px;
    color: #555;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    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 {
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

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

.disclaimer {
    background-color: #ecf0f1;
    padding: 30px 20px;
    text-align: center;
}

.disclaimer p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 20px 60px;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.services-detail {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

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

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

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

.service-detail-content {
    flex: 1;
    padding: 50px;
}

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

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.service-features {
    list-style: none;
    margin: 30px 0;
}

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 18px;
}

.service-pricing {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
    margin-right: 10px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
}

.cta-section {
    background-color: #3498db;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-section .cta-button {
    background-color: #ffffff;
    color: #3498db;
}

.cta-section .cta-button:hover {
    background-color: #ecf0f1;
}

.about-intro-split {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.about-image {
    flex: 1;
    background-color: #ecf0f1;
    overflow: hidden;
}

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

.philosophy-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

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

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

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.philosophy-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.philosophy-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.team-section {
    padding: 80px 20px;
    background-color: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
}

.team-intro {
    text-align: center;
    margin-bottom: 50px;
}

.team-intro h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.team-intro p {
    font-size: 20px;
    color: #7f8c8d;
}

.team-description p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.studio-split {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
}

.studio-image {
    flex: 1;
    background-color: #ecf0f1;
    overflow: hidden;
}

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

.studio-text {
    flex: 1;
}

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

.studio-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

.studio-features {
    list-style: none;
}

.studio-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.studio-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 18px;
}

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

.values-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.values-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.contact-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

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

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

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-note {
    padding: 25px;
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.location-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.location-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
    min-height: 600px;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
}

.thanks-details {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.thanks-next-steps {
    text-align: left;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.thanks-next-steps ol {
    padding-left: 25px;
}

.thanks-next-steps ol li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

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

.legal-page {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

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

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

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.legal-container ul {
    margin: 15px 0 15px 30px;
}

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

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

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

@media (max-width: 768px) {
    .hero-split,
    .service-card-left,
    .service-card-right,
    .service-detail-card,
    .service-detail-card.reverse,
    .about-intro-split,
    .studio-split,
    .trust-container {
        flex-direction: column;
    }

    .hero-left h1,
    .page-header h1,
    .thanks-container h1 {
        font-size: 32px;
    }

    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .contact-details {
        flex-direction: column;
    }

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

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