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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

.btn-cookie-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.header-asymmetric {
    position: relative;
    background: #f8f9fa;
    padding: 25px 40px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 20px;
}

.brand-mark {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    text-align: right;
    max-width: 250px;
}

.nav-floating {
    display: flex;
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 80px;
}

.nav-floating a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-floating a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

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

.nav-floating a:hover::after {
    width: 100%;
}

.hero-offset {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    gap: 60px;
    position: relative;
}

.hero-image-wrap {
    flex: 1.2;
    position: relative;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.hero-text-block {
    flex: 1;
    padding: 40px;
    background: #ffffff;
    border-left: 5px solid #3498db;
}

.hero-text-block h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

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

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.intro-diagonal {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 50px;
}

.content-narrow {
    flex: 1;
}

.content-narrow h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.3;
}

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

.visual-accent {
    flex: 0.8;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    transform: rotate(-2deg);
}

.visual-accent img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transform: rotate(2deg) scale(1.1);
}

.services-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.section-header-offset {
    margin-bottom: 60px;
    padding-left: 120px;
}

.section-header-offset h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header-offset p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
}

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

.service-card.card-left {
    padding-left: 0;
}

.service-card.card-right {
    padding-left: 100px;
}

.service-card.card-center {
    justify-content: center;
    padding: 50px;
    background: #f8f9fa;
    border-radius: 8px;
}

.service-image {
    flex: 0.9;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
}

.service-content-wide {
    max-width: 800px;
    text-align: center;
}

.service-content h3,
.service-content-wide h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 28px;
    background: #34495e;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 73, 94, 0.3);
}

.approach-overlap {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: flex-start;
}

.approach-text {
    flex: 1;
    padding-top: 40px;
}

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

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.approach-visual {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    transform: translateY(-30px);
}

.approach-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.form-section-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.form-container {
    max-width: 700px;
    margin-left: 150px;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
}

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

.form-container > p {
    margin-bottom: 30px;
    color: #666;
    font-size: 16px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #dfe6e9;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    padding: 15px 40px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.footer-split {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
    margin-top: 100px;
}

.footer-main {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 40px;
    gap: 80px;
}

.footer-col {
    flex: 1;
}

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

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

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

.footer-col ul li {
    margin-bottom: 12px;
}

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
    }

    .intro-diagonal {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
        padding-left: 0 !important;
    }

    .approach-overlap {
        flex-direction: column;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

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

    .form-container {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        flex-wrap: wrap;
        padding-left: 0;
        gap: 20px;
    }

    .header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

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

.page-intro {
    max-width: 1400px;
    margin: 80px auto 60px;
    padding: 0 40px;
}

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

.intro-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.story-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.story-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.story-text {
    flex: 1;
}

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

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.philosophy-section {
    background: #f8f9fa;
    padding: 80px 40px;
    margin: 80px 0;
}

.philosophy-content {
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.philosophy-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

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

.experience-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.experience-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.experience-text {
    flex: 1;
}

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

.experience-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.experience-visual {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.experience-visual img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.team-approach {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.team-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.team-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.cta-section {
    background: #34495e;
    padding: 80px 40px;
    text-align: center;
    margin-top: 80px;
}

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

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #ecf0f1;
}

.services-list-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
}

.service-item {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
    align-items: flex-start;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item-image {
    flex: 0.8;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-item-content h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-price-display {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.contact-page {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.contact-intro h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.contact-details {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #34495e;
    font-weight: 600;
}

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

.contact-map {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
}

.thanks-page {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.thanks-content {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 8px;
    border-top: 5px solid #27ae60;
}

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

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

.selected-service-display {
    background: #ffffff;
    padding: 25px;
    border-radius: 5px;
    margin: 30px 0;
    border-left: 4px solid #3498db;
}

.selected-service-display strong {
    color: #2c3e50;
    font-size: 16px;
}

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

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #34495e;
}

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

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

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

@media (max-width: 1024px) {
    .story-wrapper,
    .experience-wrapper,
    .contact-details,
    .service-item {
        flex-direction: column;
    }

    .service-item:nth-child(even) {
        flex-direction: column;
    }

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