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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c5aa0;
}

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

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

.nav-links a:hover {
    color: #2c5aa0;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

.hero-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 35px;
    max-width: 520px;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: #2c5aa0;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #1e4278;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5aa0;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #2c5aa0;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #2c5aa0;
    color: #ffffff;
}

.value-proposition {
    padding: 90px 20px;
    background-color: #ffffff;
}

.value-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.value-text {
    flex: 1.2;
}

.value-text h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.value-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.value-image {
    flex: 1;
    background-color: #e9ecef;
}

.value-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.services-preview {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

.section-header-left {
    max-width: 1200px;
    margin: 0 auto 50px;
}

.section-header-left h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-header-left p {
    font-size: 20px;
    color: #666;
}

.services-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin: 25px 25px 15px;
}

.service-card p {
    font-size: 16px;
    color: #666;
    margin: 0 25px 20px;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: #2c5aa0;
    margin: 0 25px 25px;
}

.cta-center {
    max-width: 1200px;
    margin: 50px auto 0;
    text-align: center;
}

.process-flow {
    padding: 90px 20px;
    background-color: #ffffff;
}

.process-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.process-split.reverse {
    flex-direction: row-reverse;
}

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

.process-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.process-content {
    flex: 1;
}

.process-content h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 30px;
}

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

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

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

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

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

.testimonials-inline {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

.testimonials-inline h2 {
    max-width: 1200px;
    margin: 0 auto 50px;
    font-size: 42px;
    color: #1a1a1a;
    text-align: center;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

.testimonial p {
    font-size: 17px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial cite {
    font-size: 15px;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

.languages-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.languages-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.languages-content {
    flex: 1;
}

.languages-content h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.languages-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.language-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.language-list span {
    background-color: #e9ecef;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 15px;
    color: #333;
}

.languages-image {
    flex: 1;
    background-color: #e9ecef;
}

.languages-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.form-section {
    padding: 90px 20px;
    background-color: #2c5aa0;
    color: #ffffff;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 18px;
    color: #e9ecef;
    margin-bottom: 30px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.form-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 20px;
}

.form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

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

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

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

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

.footer-column p {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    color: #b0b0b0;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 30px;
}

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

.cookie-content a {
    color: #6ab3ff;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background-color: #28a745;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #218838;
}

.cookie-btn.reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #5a6268;
}

.page-header {
    background-color: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: #666;
}

.services-detail {
    padding: 60px 20px;
    background-color: #ffffff;
}

.service-detail-item {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

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

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #2c5aa0;
    font-size: 24px;
}

.pricing-box {
    background-color: #f8f9fa;
    padding: 20px 30px;
    border-radius: 8px;
    display: inline-block;
}

.price-label {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.price-value {
    font-size: 28px;
    font-weight: bold;
    color: #2c5aa0;
}

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

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.cta-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
}

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

.cta-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}

.about-intro-split {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-text {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.about-intro-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.about-text h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 25px;
}

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

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

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

.values-section h2 {
    max-width: 1200px;
    margin: 0 auto 50px;
    font-size: 42px;
    color: #1a1a1a;
    text-align: center;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.team-approach {
    padding: 90px 20px;
    background-color: #ffffff;
}

.approach-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-image {
    flex: 1;
    background-color: #e9ecef;
}

.approach-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.approach-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.approach-list {
    list-style: none;
}

.approach-list li {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.approach-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.stats-section {
    padding: 90px 20px;
    background-color: #2c5aa0;
    color: #ffffff;
}

.stats-section h2 {
    max-width: 1200px;
    margin: 0 auto 50px;
    font-size: 42px;
    text-align: center;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-number {
    font-size: 52px;
    font-weight: bold;
    color: #ffffff;
}

.stat-label {
    font-size: 18px;
    color: #e9ecef;
}

.philosophy-section {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

.philosophy-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.philosophy-split.reverse {
    flex-direction: row-reverse;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

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

.philosophy-image {
    flex: 1;
    background-color: #e9ecef;
}

.philosophy-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.contact-header {
    background-color: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 20px;
    color: #666;
}

.contact-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-block p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background-color: #e9ecef;
}

.contact-map img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.contact-details-section {
    padding: 60px 20px 80px;
    background-color: #f8f9fa;
}

.details-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.detail-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.detail-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
    min-height: 600px;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

.thanks-icon {
    margin-bottom: 30px;
}

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

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.thanks-info h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #2c5aa0;
    color: #ffffff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.thanks-service-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-service-info h3 {
    font-size: 18px;
    color: #666;
    margin-bottom: 8px;
}

.thanks-service-info p {
    font-size: 22px;
    color: #2c5aa0;
    font-weight: 600;
}

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

.thanks-contact {
    font-size: 16px;
    color: #666;
}

.legal-page {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.legal-update {
    font-size: 15px;
    color: #666;
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin: 25px 0 15px;
}

.legal-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-section li {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero-split,
    .value-split,
    .process-split,
    .languages-split,
    .form-container-split,
    .service-detail-item,
    .about-intro-split,
    .approach-split,
    .philosophy-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-content h1,
    .page-header h1,
    .about-text h1,
    .contact-header h1,
    .thanks-container h1 {
        font-size: 36px;
    }

    .nav-links {
        gap: 15px;
    }

    .services-cards,
    .testimonial-grid,
    .values-grid,
    .stats-grid,
    .details-grid {
        flex-direction: column;
    }

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

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