:root {
    --primary: #2C3E50;
    --secondary: #E67E22;
    --accent: #3498DB;
    --text: #2C3E50;
    --light-bg: #ECF0F1;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

.ad-disclosure {
    background: var(--light-bg);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    color: var(--text);
    border-left: 3px solid var(--secondary);
}

header {
    position: relative;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-text-block {
    width: 55%;
    padding: 8rem 5% 5rem 8%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text-block p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image-block {
    width: 45%;
    position: relative;
    background-color: var(--light-bg);
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

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

.offset-section {
    display: flex;
    align-items: stretch;
    margin: 6rem 0;
}

.offset-content {
    width: 60%;
    padding: 4rem 5%;
    background: var(--light-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offset-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.offset-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.offset-image {
    width: 40%;
    position: relative;
    margin-left: -5%;
    margin-top: 3rem;
    background-color: var(--light-bg);
}

.offset-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 10px 40px var(--shadow);
}

.services-asymmetric {
    padding: 5rem 5%;
    background: var(--white);
}

.services-asymmetric h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
    text-align: left;
}

.services-intro {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 600px;
}

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

.service-card-large {
    width: calc(66% - 1rem);
    background: var(--light-bg);
    overflow: hidden;
    display: flex;
    position: relative;
}

.service-card-small {
    width: calc(34% - 1rem);
    background: var(--primary);
    color: var(--white);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-image-wrap {
    width: 45%;
    background-color: var(--light-bg);
}

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

.service-content-wrap {
    width: 55%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content-wrap h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-content-wrap p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.service-card-small h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-card-small p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.9;
}

.service-card-small .service-price {
    color: var(--secondary);
}

.cta-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

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

.service-card-small .cta-secondary {
    border-color: var(--white);
    color: var(--white);
}

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

.diagonal-section {
    background: var(--primary);
    color: var(--white);
    padding: 6rem 8%;
    margin: 5rem 0;
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.diagonal-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.diagonal-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 1rem;
}

.form-container {
    max-width: 700px;
    margin: 5rem auto;
    padding: 3rem;
    background: var(--light-bg);
    box-shadow: 0 10px 30px var(--shadow);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.form-container p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #BDC3C7;
    background: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

footer {
    background: var(--primary);
    color: var(--white);
    padding: 3rem 5% 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.footer-section p,
.footer-section li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -5px 20px var(--shadow);
    z-index: 1000;
    gap: 2rem;
}

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

.cookie-banner p {
    flex: 1;
}

.cookie-banner a {
    color: var(--secondary);
    text-decoration: underline;
}

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

.cookie-buttons button {
    padding: 0.8rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #D35400;
}

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

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

.content-page {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2rem 5%;
}

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.content-page h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--primary);
}

.content-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-page ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.content-page li {
    margin-bottom: 0.5rem;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 5%;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    padding: 3rem;
    background: var(--light-bg);
    box-shadow: 0 10px 30px var(--shadow);
}

.thanks-box h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.thanks-box p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-info-block {
    background: var(--light-bg);
    padding: 3rem;
    margin: 3rem 0;
}

.contact-info-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.contact-detail p {
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-text-block,
    .hero-image-block {
        width: 100%;
        clip-path: none;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

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

    .offset-content,
    .offset-image {
        width: 100%;
        margin: 0;
    }

    .service-card-large,
    .service-card-small {
        width: 100%;
    }

    .service-card-large {
        flex-direction: column;
    }

    .service-image-wrap,
    .service-content-wrap {
        width: 100%;
    }

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