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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    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;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #d4526e;
    color: #fff;
}

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

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

.btn-reject:hover {
    background-color: #333;
}

.main-header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #d4526e;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.nav-links a:hover {
    color: #d4526e;
}

.hero-asymmetric {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content-offset {
    flex: 1;
    padding-right: 40px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    color: #555;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #d4526e;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    padding: 12px 32px;
    background-color: transparent;
    color: #d4526e;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #d4526e;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #d4526e;
    color: #fff;
}

.intro-offset {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-block {
    flex: 1.2;
    padding-left: 60px;
}

.intro-block h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.intro-visual {
    flex: 1;
    margin-top: 40px;
}

.intro-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.section-title-offset h2 {
    font-size: 42px;
    color: #1a1a1a;
}

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

.service-card {
    flex: 0 0 calc(33.333% - 27px);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card.offset-top {
    margin-top: -30px;
}

.service-card.offset-bottom {
    margin-top: 30px;
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 24px 12px;
    font-size: 15px;
    color: #666;
}

.price {
    padding: 12px 24px;
    font-size: 24px;
    font-weight: 700;
    color: #d4526e;
}

.select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px;
    background-color: #d4526e;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #b83a54;
}

.testimonials-offset {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
}

.testimonial-block {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-left: 4px solid #d4526e;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.testimonial-block:first-child {
    margin-top: -20px;
}

.testimonial-block:last-child {
    margin-top: 20px;
}

.testimonial-block blockquote {
    font-size: 18px;
    font-style: italic;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-block cite {
    font-size: 14px;
    color: #888;
    font-style: normal;
}

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

.form-container {
    background-color: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    margin-left: 60px;
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

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

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

.form-group input {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #d4526e;
}

.btn-submit {
    padding: 16px;
    background-color: #d4526e;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 40px 20px;
    margin-top: 120px;
}

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

.footer-block {
    flex: 1;
}

.footer-block h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #d4526e;
}

.footer-block p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

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

.footer-block ul li {
    margin-bottom: 8px;
}

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

.footer-block ul li a:hover {
    color: #d4526e;
}

.disclaimer {
    font-size: 12px;
    color: #999;
    line-height: 1.5;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.about-hero,
.services-hero,
.contact-hero {
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 0 40px;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.lead {
    font-size: 20px;
    color: #555;
}

.about-story {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-text-offset {
    flex: 1.2;
}

.story-text-offset h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.story-image-offset {
    flex: 1;
    margin-top: -40px;
}

.story-image-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #d4526e;
}

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

.team-section {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 40px;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.team-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member {
    background-color: #fff;
    padding: 32px;
    border-left: 3px solid #d4526e;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.team-member:nth-child(odd) {
    margin-left: 40px;
}

.team-member:nth-child(even) {
    margin-left: 100px;
}

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

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

.service-item-asymmetric {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-item-asymmetric.reverse {
    flex-direction: row-reverse;
}

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

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #d4526e;
    margin-top: 20px;
    margin-bottom: 24px;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.contact-info-asymmetric {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
}

.contact-details-offset {
    flex: 1;
    padding-right: 40px;
}

.contact-details-offset h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #d4526e;
}

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

.contact-visual-offset {
    flex: 1;
    margin-top: -60px;
}

.contact-visual-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

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

.location-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.location-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

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

.thanks-content {
    background-color: #fff;
    padding: 80px 60px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #d4526e;
}

.thanks-message {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #666;
    line-height: 1.7;
}

#service-confirmation {
    font-weight: 600;
    color: #333;
    margin-top: 24px;
}

.legal-content {
    max-width: 900px;
    margin: 60px auto 100px;
    padding: 0 40px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #333;
}

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

.legal-content ul {
    margin: 16px 0 24px 24px;
}

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

.legal-content a {
    color: #d4526e;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-asymmetric,
    .intro-offset,
    .about-story,
    .values-grid,
    .service-item-asymmetric,
    .contact-info-asymmetric,
    .testimonials-offset,
    .footer-content {
        flex-direction: column;
    }

    .service-card {
        flex: 0 0 100%;
    }

    .hero-title {
        font-size: 36px;
    }

    .form-container {
        margin-left: 0;
        padding: 40px 24px;
    }

    .team-member:nth-child(odd),
    .team-member:nth-child(even) {
        margin-left: 0;
    }
}