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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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;
}

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

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

.btn-cookie-accept {
    background: #4a90e2;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #357abd;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ad-label {
    font-size: 12px;
    color: #666;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

.nav-main {
    display: flex;
    gap: 28px;
}

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

.nav-main a:hover {
    color: #4a90e2;
}

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

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

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

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    background: #2c3e50;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.intro-split {
    display: flex;
}

.intro-left {
    flex: 1;
    padding: 100px 60px;
    background: #ffffff;
}

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

.intro-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.intro-right {
    flex: 1;
    background: #e8edf3;
    overflow: hidden;
}

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

.values-section {
    padding: 100px 60px;
    background: #1a2332;
}

.section-title-center {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #ffffff;
}

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

.value-card {
    flex: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #4a90e2;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #ffffff;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5e0;
}

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

.services-left {
    flex: 0 0 40%;
    padding: 80px 60px;
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-left h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.services-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
}

.services-right {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-item {
    padding: 28px;
    background: #f9fafb;
    border-left: 4px solid #4a90e2;
    transition: all 0.3s;
}

.service-item:hover {
    background: #f1f5f9;
    transform: translateX(8px);
}

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

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

.service-item .price {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #4a90e2;
}

.cta-split {
    display: flex;
}

.cta-left {
    flex: 1;
    background: #cbd5e0;
    overflow: hidden;
}

.cta-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-right {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
}

.cta-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-right p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: -12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px;
    border: 1px solid #cbd5e0;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.btn-submit {
    padding: 16px 32px;
    background: #4a90e2;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px;
    background: #f9fafb;
    border-top: 1px solid #e5e5e5;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.8;
    color: #718096;
    text-align: center;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 60px;
    background: #1a2332;
    color: #cbd5e0;
}

.footer-left {
    flex: 1;
}

.footer-brand {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-left p {
    font-size: 15px;
    line-height: 1.7;
}

.footer-center {
    flex: 1;
}

.footer-center h4,
.footer-right h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 16px;
}

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

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

.footer-center ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-center ul li a:hover {
    color: #4a90e2;
}

.footer-right {
    flex: 1;
}

.footer-right p {
    font-size: 15px;
    line-height: 1.8;
}

.email-text {
    color: #cbd5e0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 16px;
    }

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

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

    .hero-left,
    .intro-left,
    .services-left,
    .services-right,
    .cta-right {
        padding: 40px 24px;
    }

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

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

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

.page-header {
    padding: 80px 60px 40px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e5e5;
}

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

.page-header p {
    font-size: 18px;
    color: #4a5568;
    max-width: 800px;
}

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

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

.page-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2d3748;
}

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

.page-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.page-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 8px;
}

.contact-info-section {
    padding: 60px;
    background: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-block {
    flex: 1;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    padding: 60px;
    background: #f9fafb;
    border-left: 4px solid #4a90e2;
}

.thanks-box h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 32px;
}

.about-split {
    display: flex;
}

.about-left {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
}

.about-left h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

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

.about-right {
    flex: 1;
    background: #cbd5e0;
    overflow: hidden;
}

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

.team-section {
    padding: 80px 60px;
    background: #f9fafb;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a1a1a;
}

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

.team-member {
    flex: 1;
    background: #ffffff;
    padding: 32px;
    border-top: 3px solid #4a90e2;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.team-member .role {
    font-size: 15px;
    color: #718096;
    margin-bottom: 16px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.services-list-section {
    padding: 80px 60px;
    background: #ffffff;
}

.services-list-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1000px;
}

.service-card {
    display: flex;
    background: #f9fafb;
    border-left: 4px solid #4a90e2;
    padding: 32px;
}

.service-card-content {
    flex: 1;
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.service-card-price {
    display: flex;
    align-items: center;
    padding-left: 32px;
}

.service-card-price .price-tag {
    font-size: 26px;
    font-weight: 700;
    color: #4a90e2;
}