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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #8b3a62;
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-links a:hover {
    color: #8b3a62;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #2c3e50;
}

.hero-left p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #8b3a62;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.intro-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.intro-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-image {
    flex: 1;
    background-color: #f0f4f7;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.services-intro {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.services-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.services-text {
    flex: 1;
    padding-right: 40px;
}

.services-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.services-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.link-arrow {
    color: #8b3a62;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: #6d2d4d;
}

.services-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #8b3a62;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #8b3a62;
}

.form-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.form-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 18px;
    color: #555;
}

.form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #8b3a62;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.approach-section {
    padding: 100px 40px;
    background-color: #f0f4f7;
}

.approach-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row-reverse;
}

.approach-image {
    flex: 1;
    background-color: #e0e6ea;
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.approach-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.testimonials {
    padding: 100px 40px;
    background-color: #ffffff;
    text-align: center;
}

.testimonials h2 {
    font-size: 38px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    padding: 40px 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: left;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial cite {
    font-size: 14px;
    color: #8b3a62;
    font-style: normal;
    font-weight: 600;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

.footer-left h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #8b3a62;
}

.footer-left p {
    color: #bdc3c7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ecf0f1;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8b3a62;
}

.footer-contact p {
    color: #bdc3c7;
    margin-bottom: 8px;
}

.disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

.page-header {
    background-color: #f0f4f7;
    padding: 80px 40px 60px;
    text-align: center;
}

.header-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.header-content p {
    font-size: 20px;
    color: #555;
}

.services-list {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b3a62;
    font-size: 20px;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
    padding: 20px 0;
    border-top: 2px solid #e0e0e0;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 500;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #8b3a62;
}

.service-visual {
    flex: 1;
    background-color: #e8eef2;
}

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

.cta-section {
    background-color: #8b3a62;
    padding: 80px 40px;
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #f0e6ed;
    margin-bottom: 35px;
}

.cta-section .cta-primary {
    background-color: #ffffff;
    color: #8b3a62;
}

.cta-section .cta-primary:hover {
    background-color: #f0e6ed;
}

.about-intro {
    padding: 80px 40px;
    background-color: #ffffff;
}

.about-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.about-text {
    flex: 1.5;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background-color: #e8eef2;
}

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

.values-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

.values-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-item {
    flex: 1;
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #8b3a62;
}

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

.contact-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #8b3a62;
}

.info-block p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
    background-color: #e8eef2;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #8b3a62;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.thanks-container .highlight {
    font-weight: 600;
    color: #2c3e50;
}

.legal-page {
    padding: 60px 40px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.legal-content a {
    color: #8b3a62;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .services-split,
    .form-split,
    .approach-content,
    .service-detail,
    .service-detail.reverse,
    .about-split,
    .contact-container {
        flex-direction: column;
    }

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

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

    .nav-container {
        flex-wrap: wrap;
    }

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