* {
    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: #333;
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-buttons button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #27ae60;
    color: #fff;
}

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

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.main-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-disclosure {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #27ae60;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    gap: 3rem;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding-right: 2rem;
}

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

.hero-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2rem;
    background: #27ae60;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-hero:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    gap: 3rem;
    align-items: center;
    background: #f8f9fa;
}

.intro-left {
    flex: 1;
}

.intro-right {
    flex: 1;
}

.intro-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.intro-left h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.intro-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.problem-section {
    background: #fff;
    padding: 4rem 2rem;
}

.content-center {
    max-width: 1200px;
    margin: 0 auto;
}

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

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.problem-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.problem-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.problem-card p {
    color: #555;
    font-size: 1rem;
}

.solution-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    gap: 3rem;
    align-items: center;
}

.solution-left {
    flex: 1;
}

.solution-right {
    flex: 1;
}

.solution-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.solution-left h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.solution-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.btn-inline {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.9rem 1.8rem;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-inline:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.services-overview {
    background: #ecf0f1;
    padding: 4rem 2rem;
}

.content-wide {
    max-width: 1400px;
    margin: 0 auto;
}

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

.services-split-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-content {
    flex: 2;
    padding: 2rem;
}

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

.service-content p {
    color: #555;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-price {
    flex: 1;
    background: #27ae60;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.9rem 1.8rem;
    background: #fff;
    color: #27ae60;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-select-service:hover {
    background: #ecf0f1;
    transform: scale(1.05);
}

.trust-section {
    padding: 4rem 2rem;
    background: #fff;
}

.content-split-reverse {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.trust-left {
    flex: 1;
}

.trust-right {
    flex: 1;
}

.trust-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.trust-left h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.trust-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.testimonials-section {
    background: #34495e;
    color: #fff;
    padding: 4rem 2rem;
}

.testimonials-section h2 {
    color: #fff;
}

.testimonial-cards {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: block;
    font-size: 0.9rem;
    color: #bdc3c7;
}

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

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.form-intro img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    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: #27ae60;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    background: #ecf0f1;
    padding: 3rem 2rem;
}

.disclaimer {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

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

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

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

.footer-section a:hover {
    color: #27ae60;
}

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

.page-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    gap: 3rem;
    align-items: center;
    min-height: 400px;
}

.hero-content-left {
    flex: 1;
}

.hero-image-right {
    flex: 1;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

.hero-content-left p {
    font-size: 1.2rem;
    color: #555;
}

.about-mission {
    padding: 4rem 2rem;
    background: #fff;
}

.mission-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.mission-text {
    flex: 1;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

.mission-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.values-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #27ae60;
}

.value-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-card p {
    color: #555;
}

.team-section {
    padding: 4rem 2rem;
    background: #fff;
}

.team-split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.team-image {
    flex: 1;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.team-content {
    flex: 1;
}

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

.team-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.approach-section {
    background: #ecf0f1;
    padding: 4rem 2rem;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.step-number {
    min-width: 60px;
    height: 60px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.step-content p {
    color: #555;
}

.why-us-section {
    padding: 4rem 2rem;
    background: #fff;
}

.why-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.why-content {
    flex: 1;
}

.why-image {
    flex: 1;
}

.why-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

.why-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.services-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.2rem;
}

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

.service-detail-item {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-detail-left {
    flex: 1;
}

.service-detail-right {
    flex: 1;
}

.service-detail-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-detail-right h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-price-large {
    font-size: 2rem;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-detail-right p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.service-detail-right h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-detail-list {
    list-style: none;
    margin: 1rem 0 2rem;
}

.service-detail-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-detail-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.services-cta {
    background: #ecf0f1;
    padding: 4rem 2rem;
    text-align: center;
}

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

.services-cta p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: #27ae60;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.contact-hero {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.2rem;
}

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

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.contact-info-side {
    flex: 1;
}

.contact-image-side {
    flex: 1;
}

.contact-image-side img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.contact-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.email-display {
    color: #555;
    font-weight: 500;
}

.contact-note {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.contact-note h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.contact-note p {
    color: #555;
}

.faq-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    background: #fff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #555;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.service-confirmation {
    background: #ecf0f1;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

.thanks-info {
    margin: 3rem 0;
}

.thanks-info h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-icon {
    min-width: 40px;
    height: 40px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.step p {
    color: #555;
    font-size: 1.1rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    padding: 4rem 2rem;
    background: #fff;
}

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

.content-legal h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legal-update {
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.content-legal h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-legal p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-legal ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-legal li {
    color: #555;
    margin-bottom: 0.5rem;
}

.content-legal a {
    color: #3498db;
    text-decoration: none;
}

.content-legal a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #555;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-split,
    .intro-split,
    .solution-split,
    .content-split-reverse,
    .page-hero-split,
    .mission-split,
    .team-split-layout,
    .why-split,
    .service-detail-item,
    .contact-layout,
    .form-container-split {
        flex-direction: column;
    }

    .service-detail-item.reverse {
        flex-direction: column;
    }

    .hero-left h1,
    .hero-content-left h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .content-center h2,
    .content-wide h2 {
        font-size: 1.8rem;
    }

    .problem-card,
    .value-card {
        flex: 1 1 100%;
    }

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

    .testimonial-cards {
        flex-direction: column;
    }

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