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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

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

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

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

.main-nav {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.ad-label {
    font-size: 13px;
    color: #7f8c8d;
    padding: 5px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    gap: 60px;
}

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555555;
}

.hero-right {
    flex: 1;
    background: #f8f9fa;
}

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

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

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

.values-section {
    background: #f8f9fa;
    padding: 100px 0;
}

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

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

.content-half {
    flex: 1;
}

.content-half img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.content-half h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.content-half p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555555;
}

.services-intro {
    padding: 80px 40px 40px;
    text-align: center;
}

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

.centered-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.centered-content p {
    font-size: 18px;
    color: #555555;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 240px;
    background: #e9ecef;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

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

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

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

.process-section {
    background: #ffffff;
    padding: 100px 0;
}

.process-steps {
    margin-top: 40px;
}

.step {
    margin-bottom: 35px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step p {
    font-size: 16px;
    color: #666666;
}

.testimonials {
    background: #f8f9fa;
    padding: 100px 40px;
}

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

.testimonial {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
    color: #555555;
}

.testimonial cite {
    font-size: 14px;
    color: #7f8c8d;
    font-style: normal;
}

.cta-section {
    background: #2c3e50;
    padding: 100px 40px;
    text-align: center;
}

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

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

.cta-secondary {
    display: inline-block;
    padding: 16px 50px;
    background: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #ecf0f1;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 40px 40px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 50px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

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

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

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

.footer-col ul li {
    margin-bottom: 12px;
}

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

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

.email-display {
    color: #bdc3c7;
    cursor: default;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

.disclaimer {
    font-size: 13px;
    color: #7f8c8d;
    font-style: italic;
}

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

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

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #7f8c8d;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #2c3e50;
}

.modal-content h3 {
    font-size: 26px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-size: 15px;
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #2980b9;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.page-header {
    background: #2c3e50;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #ecf0f1;
}

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

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

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

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555555;
}

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

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

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

.service-item {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.service-item:last-child {
    border-bottom: none;
}

.service-visual {
    flex: 0 0 400px;
    background: #f8f9fa;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

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

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

.info-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.info-item p {
    font-size: 16px;
    color: #555555;
}

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

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

.legal-content h2 {
    font-size: 26px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: #34495e;
}

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

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content ul li {
    font-size: 16px;
    color: #555555;
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-message {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 10px;
}

.thanks-message h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #27ae60;
}

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

.thanks-message a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.thanks-message a:hover {
    background: #2980b9;
}

@media (max-width: 968px) {
    .hero-split,
    .split-container,
    .about-split,
    .service-item {
        flex-direction: column;
    }

    .split-container.reverse,
    .about-split.reverse {
        flex-direction: column;
    }

    .hero-left {
        padding-right: 0;
    }

    .service-visual {
        flex: 1;
    }

    .services-grid {
        justify-content: center;
    }

    .service-card {
        flex: 1 1 calc(50% - 20px);
    }

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