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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    flex-wrap: wrap;
}

.brand a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin: 0 15px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #4a90e2;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #f8f9fa;
}

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

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

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #357abd;
    cursor: pointer;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: #4a90e2;
    text-decoration: none;
    border: 2px solid #4a90e2;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #4a90e2;
    color: #ffffff;
    cursor: pointer;
}

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #357abd;
    cursor: pointer;
}

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 2;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #5a6c7d;
}

.services-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.service-card {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

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

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 24px;
    flex-grow: 1;
}

.price-tag {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 20px;
}

.service-select-btn {
    padding: 14px 28px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-select-btn:hover {
    background-color: #357abd;
}

.cta-center {
    text-align: center;
}

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

.value-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.value-content {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

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

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

.value-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    color: #2c3e50;
}

.value-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
    font-size: 20px;
}

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

.form-wrapper-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #5a6c7d;
}

.form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dce1e6;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

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

.btn-submit:hover {
    background-color: #357abd;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.disclaimer-box {
    background-color: #fff9e6;
    border-left: 4px solid #f39c12;
    padding: 30px;
    border-radius: 8px;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a5a5a;
}

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

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

.footer-col {
    flex: 1;
}

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

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

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

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

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

.footer-col ul li a:hover {
    color: #4a90e2;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

.btn-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #357abd;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    opacity: 0.8;
}

.page-hero {
    padding: 80px 0 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a252f;
}

.page-hero p {
    font-size: 20px;
    color: #5a6c7d;
}

.services-detailed {
    padding: 60px 0;
    background-color: #ffffff;
}

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

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

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

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

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

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    color: #2c3e50;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-size: 24px;
    line-height: 1;
}

.service-price-box {
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin: 28px 0;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #4a90e2;
}

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

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

.cta-section-services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cta-box {
    text-align: center;
    padding: 60px 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a252f;
}

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

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

.about-hero-content {
    flex: 1;
    padding: 60px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a252f;
}

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

.about-hero-image {
    flex: 1;
    border-radius: 0;
    overflow: hidden;
}

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

.values-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a252f;
}

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

.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-info {
    flex: 1;
}

.team-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

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

.team-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

.approach-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.approach-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.approach-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

.approach-content {
    flex: 1;
}

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

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

.experience-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.experience-stats-split {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.stat-box {
    flex: 1;
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.stat-value {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 12px;
}

.stat-description {
    display: block;
    font-size: 16px;
    color: #5a6c7d;
}

.cta-about {
    padding: 80px 0;
    background-color: #ffffff;
}

.cta-about-box {
    text-align: center;
    padding: 60px 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.cta-about-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a252f;
}

.cta-about-box p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.contact-hero {
    padding: 80px 0 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a252f;
}

.contact-hero p {
    font-size: 20px;
    color: #5a6c7d;
}

.contact-main {
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-layout-split {
    display: flex;
    gap: 60px;
}

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

.contact-info-side h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.contact-image-side {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

.contact-map-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
}

.map-overlay p {
    font-size: 18px;
    line-height: 1.6;
    color: #2c3e50;
}

.contact-additional {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-additional-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.additional-content {
    flex: 1;
}

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

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

.additional-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

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

.thanks-message {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.thanks-service-info {
    margin: 30px 0;
}

.selected-service {
    font-size: 18px;
    color: #2c3e50;
    background-color: #e8f4fd;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

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

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

.thanks-additional {
    padding: 80px 0;
    background-color: #ffffff;
}

.thanks-split {
    display: flex;
    gap: 40px;
}

.thanks-info-box,
.thanks-contact-box {
    flex: 1;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.thanks-info-box h3,
.thanks-contact-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a252f;
}

.thanks-info-box p,
.thanks-contact-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 12px;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
}

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

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

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

.legal-content a {
    color: #4a90e2;
    text-decoration: none;
}

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

.legal-date {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e1e8ed;
    font-size: 15px;
    color: #7f8c8d;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table thead {
    background-color: #f8f9fa;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e1e8ed;
    font-size: 15px;
}

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

.cookie-table td {
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .ad-disclosure {
        margin: 0;
    }

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

    .hero-split,
    .value-split,
    .about-hero-split {
        flex-direction: column;
    }

    .hero-left,
    .value-content,
    .about-hero-content {
        padding: 40px 30px;
    }

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

    .intro-split,
    .form-wrapper-split,
    .service-detail-split,
    .team-split,
    .approach-split,
    .contact-layout-split,
    .contact-additional-split,
    .thanks-split {
        flex-direction: column;
    }

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

    .service-info {
        padding: 30px;
    }

    .experience-stats-split {
        flex-wrap: wrap;
    }

    .stat-box {
        flex: 1 1 calc(50% - 15px);
    }

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

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

    .cookie-actions {
        justify-content: center;
    }

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

    .values-split-grid {
        flex-direction: column;
    }

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