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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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;
    margin: 0;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    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);
}

.header-main {
    background: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    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-menu {
    display: flex;
    gap: 32px;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    border: 1px solid #e1e8ed;
    border-radius: 4px;
}

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

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

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

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

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

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

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

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

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

.intro-split-right {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

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

.intro-text p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a5568;
}

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

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

.services-preview {
    background: #f8f9fa;
    padding: 80px 40px;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 400px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 280px;
    height: 100%;
    object-fit: cover;
    background: #e1e8ed;
}

.service-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

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

.service-info p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 28px;
    background: transparent;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

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

.approach-split-left {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a5568;
}

.contact-form-section {
    background: #2c3e50;
    padding: 80px 40px;
}

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

.form-intro {
    flex: 1;
    color: #ffffff;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.7;
}

.contact-form {
    flex: 1;
    background: #ffffff;
    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 #e1e8ed;
    border-radius: 4px;
    font-size: 15px;
    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: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.footer-column p {
    font-size: 14px;
    color: #b0b0b0;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.thanks-container p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a5568;
}

.about-header {
    background: #2c3e50;
    color: #ffffff;
    padding: 100px 40px 60px;
    text-align: center;
}

.about-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-header p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a5568;
}

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

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

.services-header {
    background: #3498db;
    color: #ffffff;
    padding: 100px 40px 60px;
    text-align: center;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

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

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

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: flex-start;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.service-detail-image {
    flex: 1;
    background: #e1e8ed;
}

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

.service-detail-info {
    flex: 1;
}

.service-detail-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-detail-info .price-large {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

.service-detail-info p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a5568;
}

.service-detail-info ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.service-detail-info ul li {
    margin-bottom: 10px;
    color: #4a5568;
}

.contact-header {
    background: #27ae60;
    color: #ffffff;
    padding: 100px 40px 60px;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.contact-info-block {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info-block h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 20px;
}

.contact-detail h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 16px;
    color: #4a5568;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

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

.legal-page ul li {
    margin-bottom: 10px;
    color: #4a5568;
}

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

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

    .nav-container {
        flex-wrap: wrap;
        gap: 20px;
    }

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