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

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

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

.hero-split {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.hero-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.secondary-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.secondary-button:hover {
    background-color: #3498db;
    color: #ffffff;
}

.info-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.info-split-left {
    flex: 1;
    background-color: #f5f5f5;
}

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

.info-split-right {
    flex: 1;
}

.info-split-right h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.services-preview {
    background-color: #f9fafb;
    padding: 80px 40px;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

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

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #2ecc71;
    margin: 0 24px 24px;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.process-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.process-content {
    flex: 1;
}

.process-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.process-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.contact-form-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-header h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-header p {
    font-size: 17px;
    color: #5a6c7d;
}

.contact-form {
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #dfe4ea;
    border-radius: 6px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-submit {
    text-align: center;
    margin-top: 32px;
}

.submit-button {
    padding: 16px 48px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.trust-section {
    background-color: #f9fafb;
    padding: 80px 40px;
}

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

.trust-content h3 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.trust-points {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 300px;
}

.trust-item strong {
    display: block;
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

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

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px 40px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cookie-accept {
    background-color: #2ecc71;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

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

.cookie-reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.page-header {
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
    padding: 80px 40px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.about-intro {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.about-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.values-section {
    background-color: #f9fafb;
    padding: 80px 40px;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.team-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.team-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.approach-section {
    background-color: #f9fafb;
    padding: 80px 40px;
}

.approach-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.approach-item {
    flex: 1;
    min-width: 250px;
}

.approach-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.approach-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.cta-section {
    text-align: center;
    padding: 100px 40px;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.services-intro {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.intro-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

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

.service-detail-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

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

.service-detail-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-detail-content ul {
    margin-bottom: 28px;
    padding-left: 24px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-price {
    font-size: 20px;
    font-weight: 600;
    color: #2ecc71;
    margin-top: 12px;
}

.service-price strong {
    color: #2c3e50;
}

.pricing-note {
    background-color: #fff3cd;
    padding: 40px;
    margin: 80px auto;
    max-width: 1200px;
    border-radius: 8px;
}

.note-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #856404;
}

.note-content p {
    font-size: 16px;
    color: #856404;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-info-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.contact-card {
    flex: 1;
}

.contact-card h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.contact-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.service-area-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.service-area-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.service-area-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 32px;
    line-height: 1.7;
}

.regions-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.region-item {
    flex: 1;
    min-width: 250px;
    background-color: #f9fafb;
    padding: 24px;
    border-radius: 6px;
}

.region-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.region-item p {
    font-size: 15px;
    color: #5a6c7d;
}

.additional-info {
    font-size: 16px;
    color: #5a6c7d;
    font-style: italic;
}

.faq-section {
    background-color: #f9fafb;
    padding: 80px 40px;
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item {
    background-color: #ffffff;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-section {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.thanks-details {
    background-color: #f9fafb;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 60px;
    text-align: left;
}

.thanks-details p {
    font-size: 16px;
    margin-bottom: 8px;
}

.thanks-details strong {
    color: #1a1a1a;
}

.next-steps {
    margin-bottom: 60px;
    text-align: left;
}

.next-steps h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.step-item {
    padding: 24px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.step-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f9fafb;
    border-radius: 6px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.legal-content ul {
    margin: 20px 0 20px 24px;
}

.legal-content ul li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 12px;
}

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

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

.legal-date {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #95a5a6;
    font-style: italic;
}

@media (max-width: 992px) {
    .hero-split,
    .info-section,
    .process-section,
    .about-intro,
    .team-section,
    .service-detail,
    .contact-info-section {
        flex-direction: column;
        gap: 40px;
    }

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

    .hero-content h1,
    .page-header h1 {
        font-size: 36px;
    }

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

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .form-row {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}