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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 4rem 5%;
    gap: 4rem;
    background-color: var(--bg-light);
}

.hero-text-block {
    flex: 1;
    max-width: 600px;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image-block {
    flex: 1;
    position: relative;
    background-color: #95a5a6;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.cta-text-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cta-text-link:hover {
    color: var(--secondary-color);
}

.intro-asymmetric {
    display: flex;
    gap: 5rem;
    padding: 6rem 5%;
    align-items: center;
}

.intro-left {
    flex: 0.8;
    background-color: #95a5a6;
}

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

.intro-right {
    flex: 1.2;
}

.intro-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.intro-right p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.services-offset {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.services-header-block {
    max-width: 600px;
    margin-bottom: 4rem;
}

.services-header-block h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.services-header-block p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.services-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    gap: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card.offset-1 {
    margin-left: 0;
}

.service-card.offset-2 {
    margin-left: 8%;
}

.service-card.offset-3 {
    margin-left: 4%;
}

.service-card.offset-4 {
    margin-left: 12%;
}

.service-card.offset-5 {
    margin-left: 6%;
}

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

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

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

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1rem;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.why-different {
    display: flex;
    gap: 4rem;
    padding: 6rem 5%;
    background-color: var(--bg-light);
    align-items: center;
}

.why-content-offset {
    flex: 1.3;
}

.why-content-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.why-point h4 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
    font-weight: 600;
}

.why-point p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.why-image-offset {
    flex: 0.7;
    background-color: #95a5a6;
}

.why-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.form-section-offset {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background-color: var(--bg-white);
}

.form-visual {
    flex: 0.9;
    background-color: #95a5a6;
}

.form-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.form-container {
    flex: 1.1;
    padding: 2rem;
}

.form-container h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.form-container p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    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: var(--accent-color);
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1rem;
}

.btn-submit:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.footer-asymmetric {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-disclaimer {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 2rem;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #bdc3c7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 0.95rem;
}

.btn-accept {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.about-hero-offset {
    padding: 6rem 5% 4rem;
    background-color: var(--bg-light);
}

.about-hero-content {
    max-width: 900px;
}

.about-hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.about-story-asymmetric {
    display: flex;
    gap: 4rem;
    padding: 6rem 5%;
    align-items: center;
}

.story-block-1 {
    flex: 1.2;
}

.story-block-1 h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.story-block-1 p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.story-image-1 {
    flex: 0.8;
    background-color: #95a5a6;
}

.story-image-1 img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.philosophy-offset {
    display: flex;
    gap: 4rem;
    padding: 6rem 5%;
    background-color: var(--bg-light);
    align-items: center;
}

.philosophy-visual {
    flex: 0.7;
    background-color: #95a5a6;
}

.philosophy-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.philosophy-text {
    flex: 1.3;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.philosophy-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.team-asymmetric {
    padding: 6rem 5%;
}

.team-asymmetric h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.team-content-offset {
    max-width: 700px;
    margin-bottom: 3rem;
}

.team-content-offset p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.team-image-offset {
    max-width: 800px;
    margin-left: 15%;
    background-color: #95a5a6;
}

.team-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.values-section {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.value-card p {
    font-size: 1rem;
    color: var(--text-light);
}

.cta-about-offset {
    padding: 6rem 5%;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.cta-about-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-hero-offset {
    padding: 6rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.services-hero-offset h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 800;
}

.services-hero-offset p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.services-detailed {
    padding: 6rem 5%;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-detail-block {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-detail-block.offset-right {
    margin-left: 0;
}

.service-detail-block.offset-left {
    margin-left: 8%;
}

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

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-detail-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

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

.service-detail-content ul li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.7rem;
}

.process-overview {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.process-overview h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
}

.process-steps-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.process-step p {
    font-size: 1rem;
    color: var(--text-light);
}

.services-cta-offset {
    padding: 6rem 5%;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.services-cta-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-hero {
    padding: 5rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 800;
}

.contact-hero p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.contact-info-asymmetric {
    display: flex;
    gap: 4rem;
    padding: 6rem 5%;
}

.contact-details-block {
    flex: 1;
}

.contact-details-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-email {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-visual-block {
    flex: 1;
}

.contact-visual-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 2rem;
    background-color: #95a5a6;
}

.contact-note {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-note h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-map-section {
    padding: 4rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-map-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-map-section p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.thanks-hero {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    min-height: 70vh;
}

.thanks-content {
    flex: 1.3;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 800;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-details p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

#selected-service-display {
    font-weight: 600;
    color: var(--secondary-color);
}

.thanks-next-steps {
    margin: 3rem 0;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-next-steps ul {
    padding-left: 1.5rem;
}

.thanks-next-steps ul li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.thanks-visual {
    flex: 0.7;
    background-color: #95a5a6;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 800;
}

.legal-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.7rem;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--secondary-color);
}

.cookie-controls {
    margin: 2rem 0;
}

.btn-cookie-control {
    padding: 0.9rem 2rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1rem;
}

.btn-cookie-control:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-offset,
    .intro-asymmetric,
    .why-different,
    .form-section-offset,
    .about-story-asymmetric,
    .philosophy-offset,
    .service-detail-block,
    .contact-info-asymmetric,
    .thanks-hero {
        flex-direction: column;
    }

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

    .service-card.offset-1,
    .service-card.offset-2,
    .service-card.offset-3,
    .service-card.offset-4,
    .service-card.offset-5 {
        margin-left: 0;
    }

    .service-detail-block.offset-left {
        margin-left: 0;
    }

    .team-image-offset {
        margin-left: 0;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }

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