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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.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;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

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

.btn-reject {
    background-color: #95a5a6;
    color: white;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.main-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

.nav-links a:hover {
    color: #3498db;
}

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    border: 1px solid #ffeaa7;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #f8f9fa;
}

.hero-content {
    max-width: 540px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.2;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.hero-right {
    flex: 1;
    position: relative;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #d5dbdb;
}

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

.intro-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.intro-text-left {
    flex: 1;
}

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

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

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

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

.services-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

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

.services-header p {
    font-size: 18px;
    color: #555;
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 400px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.service-image-wrapper {
    width: 100%;
    height: 280px;
    background-color: #d5dbdb;
}

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

.service-content {
    padding: 28px;
}

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 16px;
}

.service-select {
    width: 100%;
    padding: 12px 24px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-select:hover {
    background-color: #2980b9;
}

.service-select.selected {
    background-color: #27ae60;
}

.service-select.selected:hover {
    background-color: #229954;
}

.form-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.form-left-content {
    flex: 1;
}

.form-left-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.form-left-content p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #555;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    width: 28px;
    height: 28px;
    background-color: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.form-right-wrapper {
    flex: 1;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

.trust-container h2 {
    font-size: 42px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.trust-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

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

.trust-image {
    flex: 1;
    background-color: #d5dbdb;
}

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

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

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #27ae60;
}

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

.thanks-service {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 20px 0;
}

.page-content {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px;
}

.page-content h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

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

.page-content li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.contact-info-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item strong {
    font-size: 18px;
    color: #2c3e50;
}

.contact-item span {
    font-size: 16px;
    color: #555;
}

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

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

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

.about-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 60px;
}

.about-section {
    margin-bottom: 60px;
}

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

.about-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-container,
    .form-split,
    .trust-content-split {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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