:root {
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #e94560;
    --color-light: #f8f9fa;
    --color-text: #2d2d2d;
    --color-text-light: #6c757d;
    --color-border: #dee2e6;
    --color-white: #ffffff;
    --color-gold: #c9a227;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

.ad-disclosure {
    background-color: var(--color-secondary);
    color: var(--color-light);
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
}

.header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-white);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 5px 0;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--color-text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--color-accent);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 15px;
}

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

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

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

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

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

.btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.split-section {
    display: flex;
    min-height: 500px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
}

.split-image {
    flex: 1;
    background-color: var(--color-border);
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-section {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.hero-section .split-content {
    padding: 80px 60px;
}

.hero-tag {
    display: inline-block;
    background-color: rgba(233, 69, 96, 0.2);
    color: var(--color-accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--color-text-light);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

.services-section {
    padding: 80px 0;
    background-color: var(--color-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.service-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    flex: 1 1 calc(33.333% - 25px);
    max-width: 380px;
    min-width: 300px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.service-image {
    height: 200px;
    background-color: var(--color-border);
    position: relative;
    overflow: hidden;
}

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

.service-content {
    padding: 25px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.service-description {
    color: var(--color-text-light);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent);
}

.price-label {
    font-size: 12px;
    color: var(--color-text-light);
}

.about-section {
    padding: 80px 0;
}

.about-section .split-content {
    background-color: var(--color-white);
}

.about-list {
    margin: 25px 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--color-text);
}

.about-list li svg {
    width: 20px;
    height: 20px;
    fill: var(--color-accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-light);
}

.testimonials-section {
    padding: 80px 0;
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.testimonials-section .section-title {
    color: var(--color-white);
}

.testimonials-section .section-tag {
    color: var(--color-gold);
}

.testimonials-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    flex: 1 1 calc(33.333% - 25px);
    max-width: 380px;
    min-width: 280px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 15px;
}

.author-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, #c13350 100%);
    color: var(--color-white);
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background-color: var(--color-white);
    color: var(--color-accent);
}

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

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--color-accent);
}

.contact-label {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 3px;
}

.contact-value {
    font-weight: 500;
    color: var(--color-primary);
}

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

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    background-color: var(--color-white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

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

.form-submit {
    width: 100%;
}

.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 0;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal a {
    margin-left: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal a:hover {
    color: var(--color-accent);
}

.disclaimer {
    background-color: var(--color-light);
    padding: 25px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-top: 40px;
}

.page-header {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 60px 0;
    text-align: center;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumb a:hover {
    color: var(--color-accent);
}

.content-section {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 24px;
    color: var(--color-primary);
    margin: 30px 0 15px;
}

.content-wrapper h3 {
    font-size: 20px;
    color: var(--color-primary);
    margin: 25px 0 12px;
}

.content-wrapper p {
    margin-bottom: 15px;
    color: var(--color-text);
}

.content-wrapper ul {
    margin: 15px 0;
    padding-left: 25px;
    list-style: disc;
}

.content-wrapper li {
    margin-bottom: 8px;
    color: var(--color-text);
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--color-white);
}

.thanks-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.thanks-text {
    font-size: 17px;
    color: var(--color-text-light);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-size: 14px;
    transition: var(--transition);
}

.cookie-accept {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.cookie-reject {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

.cookie-accept:hover {
    background-color: #d13350;
}

.cookie-reject:hover {
    border-color: var(--color-white);
}

.services-list-full {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item-full {
    display: flex;
    gap: 30px;
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.service-item-full:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item-image {
    flex: 0 0 40%;
    background-color: var(--color-border);
    min-height: 280px;
    position: relative;
}

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

.service-item-content {
    flex: 1;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-item-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.service-item-description {
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-item-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.about-page-content {
    padding: 60px 0;
}

.team-section {
    padding: 60px 0;
    background-color: var(--color-light);
}

.team-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    text-align: center;
    flex: 1 1 250px;
    max-width: 280px;
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--color-border);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 600;
    color: var(--color-primary);
}

.team-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.team-role {
    font-size: 14px;
    color: var(--color-text-light);
}

@media (max-width: 992px) {
    .split-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .split-image {
        min-height: 350px;
    }

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

    .service-item-full {
        flex-direction: column;
    }

    .service-item-full:nth-child(even) {
        flex-direction: column;
    }

    .service-item-image {
        flex: none;
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-medium);
        transition: var(--transition);
        gap: 20px;
    }

    .nav-menu.active {
        right: 0;
    }

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

    .section-title {
        font-size: 28px;
    }

    .stats-row {
        flex-direction: column;
        gap: 20px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal a {
        margin: 0 10px;
    }

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