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

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.nav-left .logo {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

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

.nav-right a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

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

.hero-left h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a252f;
}

.hero-left p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
    max-width: 500px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #1a252f;
}

.intro-offset {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    align-items: center;
}

.intro-content {
    flex: 1.2;
}

.intro-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.intro-content p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.intro-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 6px;
}

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

.value-cards {
    display: flex;
    gap: 30px;
    padding: 60px 60px;
    background: #f8f9fa;
}

.card-item {
    flex: 1;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.card-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a252f;
}

.card-item p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-tag {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: #3498db;
}

.split-reverse {
    display: flex;
    background: #ffffff;
}

.split-image {
    flex: 1;
    overflow: hidden;
}

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

.split-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.split-text p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 25px;
    line-height: 1.7;
}

.benefit-list {
    list-style: none;
    margin-top: 20px;
}

.benefit-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #2c3e50;
}

.benefit-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.cta-section {
    padding: 80px 60px;
    text-align: center;
    background: #ecf0f1;
}

.cta-section h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #1a252f;
}

.cta-section p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.services-detailed {
    padding: 60px 60px;
}

.services-detailed h2 {
    font-size: 34px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a252f;
}

.service-row {
    display: flex;
    margin-bottom: 40px;
    gap: 40px;
    align-items: center;
}

.service-col-left {
    flex: 1;
    padding: 30px;
}

.service-col-left h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

.service-col-left p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-col-right {
    flex: 1;
    overflow: hidden;
    border-radius: 6px;
}

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

.price-inline {
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    color: #3498db;
    margin-top: 10px;
}

.form-section {
    padding: 80px 60px;
    background: #f8f9fa;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a252f;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

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

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 50px 60px 30px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px 40px;
    display: none;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    display: flex;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    flex: 1;
}

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

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

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background: #7f8c8d;
}

.page-header {
    padding: 60px 60px 40px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.page-header h1 {
    font-size: 38px;
    color: #1a252f;
}

.about-intro {
    padding: 80px 60px;
}

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

.about-text p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 900px;
}

.team-values {
    padding: 60px 60px;
    background: #f8f9fa;
}

.team-values h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a252f;
}

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

.value-item {
    flex: 1;
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 6px;
}

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

.value-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.about-visual {
    overflow: hidden;
}

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

.mission-statement {
    padding: 80px 60px;
    text-align: center;
}

.mission-statement h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a252f;
}

.mission-statement p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.services-list {
    padding: 60px 60px;
}

.service-block {
    display: flex;
    margin-bottom: 60px;
    gap: 50px;
    align-items: center;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-info p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-info ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-info ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #2c3e50;
}

.service-info ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
}

.service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 6px;
}

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

.price-box {
    font-size: 24px;
    font-weight: 600;
    color: #3498db;
}

.contact-info {
    padding: 80px 60px;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a252f;
}

.contact-details p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 25px;
}

.thanks-message {
    padding: 120px 60px;
    text-align: center;
}

.thanks-message h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-message p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.legal-content {
    padding: 60px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #1a252f;
}

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

.legal-content p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content ul li {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-offset,
    .split-reverse,
    .service-row,
    .service-block {
        flex-direction: column;
    }

    .value-cards,
    .values-grid {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

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

    .cookie-banner {
        flex-direction: column;
        gap: 15px;
    }
}