* {
    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;
    overflow-x: hidden;
}

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 6%;
    position: relative;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

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

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

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

.hero-offset {
    display: flex;
    min-height: 85vh;
    position: relative;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-content-left {
    flex: 0 0 42%;
    padding: 120px 6% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
    position: relative;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 19px;
    margin-bottom: 32px;
    color: #4a5568;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #229954;
}

.hero-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #e8f5e9;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.intro-diagonal {
    background: white;
    padding: 100px 6%;
    transform: skewY(-2deg);
    margin-top: -60px;
}

.intro-narrow {
    max-width: 720px;
    margin: 0 auto;
    transform: skewY(2deg);
}

.intro-narrow p {
    font-size: 22px;
    line-height: 1.7;
    color: #34495e;
    text-align: center;
}

.services-asymmetric {
    padding: 120px 6% 100px;
    background: #fafafa;
}

.services-header-offset {
    margin-left: 15%;
    margin-bottom: 80px;
}

.services-header-offset h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.services-header-offset p {
    font-size: 18px;
    color: #666;
}

.service-card-left,
.service-card-right {
    display: flex;
    margin-bottom: 60px;
    gap: 48px;
    align-items: center;
}

.service-card-left {
    margin-left: 0;
    margin-right: 10%;
}

.service-card-right {
    margin-left: 10%;
    margin-right: 0;
}

.service-visual {
    flex: 0 0 45%;
    overflow: hidden;
    border-radius: 8px;
    background: #e8f5e9;
}

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

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

.select-service {
    background: #27ae60;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #229954;
}

.service-card-full {
    margin-top: 80px;
}

.service-visual-bg {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-visual-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.service-info-overlay {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 700px;
    padding: 40px;
}

.service-info-overlay h3 {
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
}

.service-info-overlay p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    margin-bottom: 24px;
}

.service-info-overlay .service-price {
    color: #a8e6a1;
    font-size: 28px;
}

.cta-floating {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    padding: 80px 6%;
    margin: 80px 6% 0;
    border-radius: 12px;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
}

.form-section {
    padding: 100px 6%;
    background: white;
}

.form-container-offset {
    max-width: 600px;
    margin-left: 15%;
}

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

.form-notice {
    background: #fff3cd;
    color: #856404;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    border: 1px solid #ffeaa7;
}

.form-selected {
    background: #d4edda;
    color: #155724;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    border: 1px solid #c3e6cb;
}

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

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

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

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

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

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

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.values-offset {
    padding: 100px 6%;
    background: #f8f9fa;
}

.values-content {
    max-width: 1000px;
    margin-right: 0;
    margin-left: auto;
}

.values-content h2 {
    font-size: 38px;
    margin-bottom: 48px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #27ae60;
}

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

.disclaimer-section {
    padding: 60px 6%;
    background: #fff9e6;
    border-top: 3px solid #ffd54f;
    border-bottom: 3px solid #ffd54f;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #5d4037;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: white;
    padding: 60px 6% 30px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #27ae60;
}

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

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

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

.footer-col ul li a:hover {
    color: #27ae60;
}

.footer-col p {
    color: #ccc;
    font-size: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 24px 6%;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

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

.btn-reject:hover {
    opacity: 0.8;
}

.about-hero {
    padding: 120px 6%;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 24px;
    color: #1a1a1a;
    max-width: 800px;
}

.about-hero p {
    font-size: 20px;
    color: #4a5568;
    max-width: 700px;
    line-height: 1.7;
}

.about-content {
    padding: 100px 6%;
    background: white;
}

.about-section {
    max-width: 900px;
    margin: 0 auto 80px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.team-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    flex: 1;
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    background: #e8f5e9;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.team-member p {
    font-size: 15px;
    color: #666;
}

.services-page {
    padding: 120px 6%;
    background: white;
}

.services-page h1 {
    font-size: 48px;
    margin-bottom: 60px;
    color: #1a1a1a;
    text-align: center;
}

.service-detailed {
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 48px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 6px solid #27ae60;
}

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

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

.service-detailed .service-price {
    font-size: 28px;
    color: #27ae60;
    font-weight: 700;
    margin-top: 24px;
}

.contact-page {
    padding: 120px 6%;
    background: white;
}

.contact-page h1 {
    font-size: 48px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.contact-grid {
    display: flex;
    gap: 80px;
    max-width: 1200px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #27ae60;
}

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

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 6%;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.thanks-content a {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-content a:hover {
    background: #229954;
}

.legal-page {
    padding: 120px 6%;
    background: white;
}

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

.legal-content {
    max-width: 900px;
}

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

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

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

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

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

    .hero-content-left {
        flex: 1;
    }

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

    .service-card-left,
    .service-card-right {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .services-header-offset {
        margin-left: 0;
    }

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

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

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

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