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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    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;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: background 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: 1.5rem 2rem;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.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: 0.875rem;
    color: #7f8c8d;
    padding: 0.5rem 1rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

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

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #34495e;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
    cursor: pointer;
}

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

.intro-split {
    display: flex;
    align-items: stretch;
}

.intro-image {
    flex: 0 0 45%;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-text {
    flex: 1;
    padding: 5rem 4rem;
    background: #ffffff;
}

.intro-text h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.intro-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.8;
}

.services-preview {
    padding: 6rem 4rem;
    background: #ecf0f1;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-header p {
    font-size: 1.125rem;
    color: #7f8c8d;
}

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

.service-card {
    flex: 1;
    min-width: 350px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-image {
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    padding: 2rem;
}

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

.service-content p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.service-price {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #3498db;
}

.services-link-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.link-arrow {
    color: #3498db;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: #2980b9;
}

.link-arrow::after {
    content: ' →';
}

.approach-split {
    display: flex;
    align-items: stretch;
}

.approach-content {
    flex: 1;
    padding: 5rem 4rem;
    background: #ffffff;
}

.approach-content h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.approach-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    flex-shrink: 0;
}

.approach-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.approach-item p {
    color: #7f8c8d;
    line-height: 1.8;
}

.approach-image {
    flex: 0 0 45%;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-section {
    padding: 6rem 4rem;
    background: #2c3e50;
}

.cta-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 2.25rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.125rem;
    color: #ecf0f1;
}

.cta-form {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    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 {
    width: 100%;
    padding: 1rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-column p,
.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

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

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

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

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.content-page h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.content-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #34495e;
}

.content-page ul,
.content-page ol {
    margin: 1rem 0 1rem 2rem;
    color: #34495e;
}

.content-page li {
    margin-bottom: 0.5rem;
}

.services-page {
    padding: 4rem 2rem;
}

.services-page-header {
    max-width: 1200px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-page-header p {
    font-size: 1.125rem;
    color: #7f8c8d;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item-full {
    display: flex;
    gap: 3rem;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-item-full:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item-image {
    flex: 0 0 40%;
    overflow: hidden;
}

.service-item-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-item-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-item-details p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-item-details ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-item-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

.service-item-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

.contact-page {
    padding: 4rem 2rem;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-detail-item p {
    color: #7f8c8d;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    background: #ecf0f1;
    border-radius: 8px;
    min-height: 400px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-page {
    padding: 4rem 2rem;
}

.about-hero {
    max-width: 1200px;
    margin: 0 auto 4rem;
    text-align: center;
}

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

.about-hero p {
    font-size: 1.25rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
}

.about-content-split {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-content-split:nth-child(even) {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-image {
    flex: 0 0 45%;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.thanks-page {
    padding: 6rem 2rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 600px;
}

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

.thanks-content p {
    font-size: 1.125rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .approach-split,
    .cta-wrapper,
    .contact-split,
    .about-content-split,
    .service-item-full {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}