* {
    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;
}

.nav-asymmetric {
    background-color: #1a1a2e;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

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

.ad-disclosure {
    color: #95a5a6;
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid #7f8c8d;
    border-radius: 4px;
}

.hero-offset {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.hero-content-left {
    flex: 1;
    padding-right: 2rem;
}

.hero-content-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.hero-content-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.hero-image-right {
    flex: 1;
    background-color: #ecf0f1;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2980b9;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #3498db;
}

.intro-diagonal {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    margin: 4rem 0;
    transform: skewY(-2deg);
}

.diagonal-block {
    transform: skewY(2deg);
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.intro-text p {
    font-size: 1.1rem;
    color: #34495e;
}

.services-stagger {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.services-header-offset {
    margin-left: 8rem;
    margin-bottom: 3rem;
}

.services-header-offset h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
}

.service-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.service-card.card-left {
    margin-right: 6rem;
}

.service-card.card-right {
    margin-left: 6rem;
}

.service-card.card-center {
    margin: 0 auto;
    max-width: 900px;
}

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

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

.service-details {
    flex: 1;
    padding: 2rem;
}

.service-details-full {
    padding: 3rem;
    text-align: center;
}

.service-details h3,
.service-details-full h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.service-details p,
.service-details-full p {
    margin-bottom: 1.5rem;
    color: #34495e;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 1.5rem;
}

.btn-service {
    background-color: #27ae60;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #229954;
}

.form-section-overlap {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
    margin: 6rem 0;
    position: relative;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #dfe6e9;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 1rem 3rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

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

.trust-offset {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.trust-content {
    flex: 1.2;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

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

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2980b9;
}

.trust-item p {
    color: #34495e;
}

.trust-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.footer-asymmetric {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 0.9rem;
    color: #95a5a6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
}

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

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

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

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

.btn-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

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

.about-hero-offset {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 5rem 2rem;
    margin-bottom: 4rem;
}

.about-header {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-header h1 {
    font-size: 3rem;
    color: #ffffff;
    line-height: 1.3;
}

.about-story-diagonal {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.story-block {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #34495e;
}

.values-overlap {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    margin: 6rem 0;
}

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

.values-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a2e;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2980b9;
}

.value-card p {
    color: #34495e;
}

.team-asymmetric {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.team-intro {
    max-width: 800px;
    margin-bottom: 3rem;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.team-intro p {
    font-size: 1.1rem;
    color: #34495e;
}

.team-image {
    background-color: #ecf0f1;
}

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

.approach-offset {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.approach-step {
    padding-left: 2rem;
    border-left: 4px solid #3498db;
}

.approach-step h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #2980b9;
}

.approach-step p {
    font-size: 1.1rem;
    color: #34495e;
}

.services-hero-diagonal {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    padding: 5rem 2rem;
    margin-bottom: 4rem;
}

.services-header-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.services-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.services-header-content p {
    font-size: 1.2rem;
}

.service-detail-offset {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-detail-offset.service-detail-2,
.service-detail-offset.service-detail-4 {
    flex-direction: row-reverse;
}

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

.service-detail-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.service-detail-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: #7f8c8d;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2980b9;
}

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

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

.services-form-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    margin: 6rem 0;
}

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

.services-form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a2e;
}

.services-form-container > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #34495e;
}

.contact-hero-offset {
    background-color: #34495e;
    padding: 4rem 2rem;
    margin-bottom: 4rem;
}

.contact-header {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info-asymmetric {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

.contact-primary {
    flex: 1.5;
}

.contact-detail-block {
    margin-bottom: 3rem;
}

.contact-detail-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.contact-address {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
}

.contact-email-display {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2980b9;
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

.hours-list {
    margin-bottom: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.hours-day {
    font-weight: 600;
    color: #2c3e50;
}

.hours-time {
    color: #34495e;
}

.contact-image-offset {
    flex: 1;
    background-color: #ecf0f1;
}

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

.contact-directions {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.directions-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.directions-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.contact-additional-offset {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.additional-info {
    max-width: 1000px;
    margin: 0 auto;
}

.additional-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.additional-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.thanks-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #34495e;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2980b9;
}

.step p {
    color: #34495e;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-primary:hover {
    background-color: #3498db;
}

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.thanks-additional {
    font-size: 0.95rem;
    color: #7f8c8d;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.legal-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-container p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.8;
}

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

.legal-container ul li {
    margin-bottom: 0.8rem;
    color: #34495e;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table thead {
    background-color: #34495e;
    color: #ffffff;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #dfe6e9;
}

.cookies-table tbody tr:hover {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-offset,
    .story-block,
    .trust-offset,
    .service-card,
    .service-detail-offset,
    .contact-info-asymmetric {
        flex-direction: column;
    }

    .hero-content-left h1,
    .about-header h1,
    .services-header-content h1 {
        font-size: 2rem;
    }

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

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

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

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