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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

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

.nav {
    display: flex;
    gap: 30px;
}

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

.nav a:hover {
    color: #2C5F7C;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 5px 12px;
    background-color: #F0F0F0;
    border-radius: 4px;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #E8A838;
    color: #1A1A1A;
}

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

.btn-reject {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #FFFFFF;
}

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

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

.hero-left p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #E8A838;
    color: #1A1A1A;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

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

.intro-section {
    padding: 100px 0;
    background-color: #F8F9FA;
}

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

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

.split-image {
    flex: 1;
    background-color: #E8E8E8;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    color: #2C5F7C;
    margin-bottom: 24px;
    line-height: 1.3;
}

.split-content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #333;
}

.services-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.services-section h2 {
    font-size: 42px;
    color: #2C5F7C;
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #F8F9FA;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.service-image {
    height: 220px;
    background-color: #E8E8E8;
}

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

.service-card h3 {
    font-size: 22px;
    color: #2C5F7C;
    margin: 20px 20px 12px;
}

.service-card p {
    font-size: 16px;
    color: #555;
    margin: 0 20px 16px;
    line-height: 1.5;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #E8A838;
    margin: 0 20px 16px;
}

.btn-select {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background-color: #2C5F7C;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background-color: #1F4A61;
}

.form-section {
    padding: 100px 0;
    background-color: #F8F9FA;
}

.contact-form {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.service-display {
    background-color: #E8F4F8;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 24px;
    border-left: 4px solid #2C5F7C;
    display: none;
}

.service-display.active {
    display: block;
}

.service-display strong {
    color: #2C5F7C;
    font-size: 18px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #E0E0E0;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #E8A838;
    color: #1A1A1A;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-submit:disabled {
    background-color: #CCC;
    cursor: not-allowed;
    transform: none;
}

.trust-block {
    background-color: #2C5F7C;
    color: #FFFFFF;
    padding: 60px;
    border-radius: 8px;
}

.trust-block h3 {
    font-size: 28px;
    margin-bottom: 24px;
}

.trust-block ul {
    list-style: none;
}

.trust-block li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
}

.trust-block li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #E8A838;
    font-weight: 700;
    font-size: 20px;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #E8E8E8;
}

.disclaimer {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

.footer {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-col p,
.footer-col a {
    color: #CCC;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col a:hover {
    color: #E8A838;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

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

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

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

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

    .nav {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }
}