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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C3E50;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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;
    min-width: 300px;
}

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

.btn-primary, .btn-secondary {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3498DB;
    color: #fff;
}

.btn-primary:hover {
    background-color: #2980B9;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.main-header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2C3E50;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.main-nav a:hover {
    color: #3498DB;
}

.ad-notice {
    background-color: #E74C3C;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2C3E50;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #2C3E50;
    padding: 20px;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ad-notice-mobile {
    background-color: #E74C3C;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ECF0F1;
}

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

.hero-left p {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
}

.btn-hero {
    display: inline-block;
    background-color: #3498DB;
    color: #fff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.btn-hero:hover {
    background-color: #2980B9;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.intro-image {
    flex: 1;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-text {
    flex: 1;
    padding: 60px 50px;
    background-color: #fff;
}

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

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

.services-section {
    padding: 80px 40px;
    background-color: #F8F9FA;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-header h2 {
    font-size: 42px;
    color: #2C3E50;
    margin-bottom: 16px;
}

.services-header p {
    font-size: 20px;
    color: #666;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-image {
    flex: 1;
    overflow: hidden;
}

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

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

.service-content h3 {
    font-size: 28px;
    color: #2C3E50;
    margin-bottom: 16px;
}

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

.price {
    font-size: 32px;
    font-weight: bold;
    color: #27AE60;
    margin: 20px 0;
}

.btn-select {
    background-color: #3498DB;
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #2980B9;
}

.cta-split {
    display: flex;
    min-height: 400px;
}

.cta-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #3498DB;
    color: #fff;
}

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

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    background-color: #fff;
    color: #3498DB;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #ECF0F1;
}

.cta-image {
    flex: 1;
    overflow: hidden;
}

.cta-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
}

.modal-close:hover {
    color: #333;
}

.modal-content h2 {
    font-size: 28px;
    color: #2C3E50;
    margin-bottom: 20px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #27AE60;
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

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

.main-footer {
    background-color: #2C3E50;
    color: #ECF0F1;
    padding: 60px 40px 20px;
}

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

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-section p {
    margin-bottom: 8px;
    color: #BDC3C7;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #BDC3C7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498DB;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
}

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

@media (max-width: 968px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .cta-split {
        flex-direction: column;
    }

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

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

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

.about-hero {
    padding: 80px 40px;
    background-color: #ECF0F1;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    color: #2C3E50;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

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

.about-image {
    flex: 1;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-text {
    flex: 1;
    padding: 60px 50px;
    background-color: #fff;
}

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

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

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    color: #2C3E50;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 20px;
    color: #2C3E50;
    margin-bottom: 10px;
}

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

.contact-map {
    flex: 1;
    background-color: #ECF0F1;
    min-height: 400px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    display: block;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-container h1 {
    font-size: 42px;
    color: #2C3E50;
    margin-bottom: 30px;
}

.legal-container h2 {
    font-size: 28px;
    color: #2C3E50;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-container p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-container ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-container li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.8;
}

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

.services-page-header h1 {
    font-size: 48px;
    color: #2C3E50;
    margin-bottom: 20px;
}

.services-page-header p {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 40px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    color: #27AE60;
    margin-bottom: 30px;
}

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

.thanks-container .btn-home {
    display: inline-block;
    background-color: #3498DB;
    color: #fff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

.thanks-container .btn-home:hover {
    background-color: #2980B9;
}