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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    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: 1rem;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    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: #333333;
}

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.ad-disclosure {
    flex: 1;
    text-align: center;
}

.ad-label {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

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

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

.hero-left {
    flex: 1;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
}

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

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555555;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

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

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

.intro-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: center;
    color: #34495e;
}

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

.services-intro-left {
    flex: 0 0 35%;
    background: #34495e;
    color: #ffffff;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.services-intro-left p {
    font-size: 1.125rem;
    line-height: 1.7;
}

.services-list-right {
    flex: 1;
    padding: 3rem 2rem;
    background: #ecf0f1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    display: flex;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

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

.service-image {
    flex: 0 0 250px;
    background: #95a5a6;
}

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

.service-details {
    flex: 1;
    padding: 2rem;
}

.service-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-details p {
    margin-bottom: 1rem;
    color: #555555;
}

.service-price {
    font-size: 1.375rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.btn-select-service {
    padding: 0.75rem 2rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

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

.form-section-split {
    display: flex;
    min-height: 700px;
}

.form-left-visual {
    flex: 1;
    background: #bdc3c7;
    overflow: hidden;
}

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

.form-right-content {
    flex: 1;
    background: #f8f9fa;
    padding: 4rem 3rem;
}

.form-right-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-right-content > p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: #555555;
}

.contact-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #bdc3c7;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

.trust-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.trust-item p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #555555;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #34495e;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-column p {
    line-height: 1.6;
    color: #bdc3c7;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9375rem;
}

.disclaimer {
    background: #f8f9fa;
    padding: 2rem;
    border-top: 1px solid #e0e0e0;
}

.disclaimer p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.875rem;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
}

.thanks-container {
    max-width: 700px;
    margin: 5rem auto;
    padding: 3rem;
    text-align: center;
    background: #f8f9fa;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-container p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #555555;
}

.btn-back {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

.page-header {
    background: #34495e;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.125rem;
}

.content-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem 3rem;
}

.content-split {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.content-main {
    flex: 1;
}

.content-main h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.content-main h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.content-main p {
    margin-bottom: 1rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #555555;
}

.content-main ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-main ul li {
    margin-bottom: 0.5rem;
    color: #555555;
}

.content-sidebar {
    flex: 0 0 300px;
    background: #f8f9fa;
    padding: 2rem;
    align-self: flex-start;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.sidebar-section p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 0.75rem;
}

.about-split {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-visual {
    flex: 1;
    background: #bdc3c7;
}

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

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555555;
}

.contact-info-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info-item {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
}

.contact-info-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-info-item p {
    margin-bottom: 0.5rem;
    color: #555555;
}

@media (max-width: 768px) {
    .hero-split,
    .services-split,
    .form-section-split,
    .content-split,
    .about-split {
        flex-direction: column;
    }

    .trust-grid,
    .contact-info-grid {
        flex-direction: column;
    }

    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 200px;
    }
}