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

:root {
    --primary: #2d5016;
    --secondary: #7c9c5f;
    --accent: #d4a574;
    --dark: #1a1a1a;
    --light: #f5f5f0;
    --white: #ffffff;
    --sand: #e8dcc4;
    --terracotta: #c87941;
}

body {
    font-family: 'Georgia', serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.floating-nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background: var(--white);
    padding: 20px 15px;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.floating-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.floating-nav a {
    text-decoration: none;
    color: var(--dark);
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.floating-nav a:hover {
    color: var(--primary);
}

.ad-disclosure {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-family: 'Arial', sans-serif;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 8%;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--primary);
    font-weight: 300;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--dark);
}

.hero-image-offset {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 55%;
    height: 70vh;
    background-color: var(--sand);
    overflow: hidden;
    border-radius: 20px 0 0 20px;
    z-index: 1;
}

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

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    cursor: pointer;
}

.cta-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.offset-section {
    padding: 120px 0;
    position: relative;
}

.offset-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.offset-item {
    flex: 1;
    min-width: 280px;
}

.offset-item:nth-child(even) {
    margin-top: 80px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 60px;
    color: var(--primary);
    font-weight: 300;
    position: relative;
}

.section-title.offset-left {
    margin-left: 15%;
}

.section-title.offset-right {
    margin-left: auto;
    text-align: right;
    margin-right: 15%;
}

.overlap-container {
    position: relative;
    margin: 100px 0;
}

.overlap-bg {
    position: absolute;
    width: 70%;
    height: 400px;
    background: var(--light);
    z-index: 1;
    border-radius: 20px;
}

.overlap-bg.left {
    left: 0;
    top: 50px;
}

.overlap-bg.right {
    right: 0;
    top: 50px;
}

.overlap-content {
    position: relative;
    z-index: 2;
    padding: 80px;
    max-width: 60%;
}

.overlap-content.push-right {
    margin-left: auto;
    margin-right: 10%;
}

.overlap-content.push-left {
    margin-left: 10%;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.service-price {
    font-size: 32px;
    color: var(--terracotta);
    font-weight: bold;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    font-size: 15px;
    color: #666;
}

.service-features li:before {
    content: "✓ ";
    color: var(--secondary);
    font-weight: bold;
    margin-right: 8px;
}

.irregular-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.irregular-item {
    background: var(--light);
    padding: 35px;
    border-radius: 12px;
}

.irregular-item:nth-child(1) {
    flex: 1 1 45%;
    transform: rotate(-1deg);
}

.irregular-item:nth-child(2) {
    flex: 1 1 50%;
    transform: rotate(1deg);
    margin-top: 40px;
}

.irregular-item:nth-child(3) {
    flex: 1 1 48%;
    transform: rotate(0.5deg);
}

.irregular-item:nth-child(4) {
    flex: 1 1 46%;
    transform: rotate(-0.8deg);
    margin-top: 40px;
}

.irregular-item:nth-child(5) {
    flex: 1 1 47%;
    transform: rotate(0.3deg);
}

.irregular-item:nth-child(6) {
    flex: 1 1 48%;
    transform: rotate(-0.5deg);
    margin-top: 50px;
}

.image-card {
    width: 100%;
    height: 200px;
    background-color: var(--sand);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.form-section {
    background: var(--light);
    padding: 100px 0;
    margin: 120px 0;
    position: relative;
}

.form-section:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--sand);
    border-radius: 50%;
    top: -100px;
    right: 10%;
    z-index: 1;
    opacity: 0.6;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    transform: rotate(-0.5deg);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: var(--dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.diagonal-section {
    position: relative;
    padding: 150px 0;
    background: linear-gradient(135deg, var(--light) 0%, var(--sand) 100%);
    transform: skewY(-3deg);
    margin: 100px 0;
}

.diagonal-content {
    transform: skewY(3deg);
}

.stacked-images {
    position: relative;
    height: 500px;
    margin: 80px 0;
}

.stacked-image {
    position: absolute;
    width: 400px;
    height: 300px;
    background-color: var(--sand);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

.stacked-image:nth-child(1) {
    left: 10%;
    top: 0;
    transform: rotate(-3deg);
    z-index: 3;
}

.stacked-image:nth-child(2) {
    right: 15%;
    top: 80px;
    transform: rotate(5deg);
    z-index: 2;
}

.stacked-image:nth-child(3) {
    left: 35%;
    bottom: 0;
    transform: rotate(-2deg);
    z-index: 1;
}

.footer-asymmetric {
    background: var(--dark);
    color: var(--light);
    padding: 80px 0 40px;
    margin-top: 120px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column:nth-child(1) {
    flex: 1.5;
}

.footer-column:nth-child(2) {
    margin-top: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-column a {
    color: var(--light);
    text-decoration: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
}

.disclaimer {
    background: var(--sand);
    padding: 60px 0;
    margin: 100px 0;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 25px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
}

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

.btn-accept {
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background 0.3s;
}

.btn-accept:hover {
    background: var(--secondary);
}

.btn-reject {
    padding: 12px 30px;
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s;
}

.btn-reject:hover {
    background: var(--dark);
    color: var(--white);
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
    font-size: 18px;
}

.team-offset {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 100px 0;
}

.team-image {
    flex: 1;
    height: 450px;
    background-color: var(--sand);
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(2deg);
}

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

.team-text {
    flex: 1;
    transform: rotate(-1deg);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin: 80px 0;
}

.value-item {
    flex: 1 1 30%;
    min-width: 280px;
    padding: 35px;
    background: var(--light);
    border-radius: 15px;
}

.value-item:nth-child(odd) {
    transform: rotate(1deg);
}

.value-item:nth-child(even) {
    transform: rotate(-1deg);
    margin-top: 30px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.contact-layout {
    display: flex;
    gap: 80px;
    margin: 80px 0;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
    height: 500px;
    background-color: var(--sand);
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(-2deg);
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-block {
    margin: 40px 0;
    padding: 30px;
    background: var(--light);
    border-radius: 12px;
    transform: rotate(0.5deg);
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

.info-block p {
    margin: 10px 0;
    font-size: 15px;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 52px;
    color: var(--primary);
    margin-bottom: 30px;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 40px;
}

.legal-page {
    padding: 100px 0;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary);
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

@media (max-width: 1200px) {
    .hero-image-offset {
        width: 50%;
        right: 0;
    }

    .floating-nav {
        right: 20px;
    }
}

@media (max-width: 968px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 80px 0;
    }

    .hero-content {
        margin-left: 0;
        padding: 20px;
    }

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

    .hero-image-offset {
        position: relative;
        right: 0;
        width: 100%;
        height: 400px;
        border-radius: 20px;
        margin-top: 40px;
    }

    .floating-nav {
        display: none;
    }

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

    .offset-item:nth-child(even) {
        margin-top: 0;
    }

    .overlap-content {
        max-width: 100%;
        padding: 40px;
    }

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

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

    .form-container {
        padding: 40px 30px;
    }

    .irregular-item {
        transform: none !important;
        margin-top: 0 !important;
    }

    .stacked-images {
        height: 400px;
    }

    .stacked-image {
        width: 300px;
        height: 220px;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left;
    }

    .ad-disclosure {
        position: static;
        margin: 10px;
        display: block;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

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