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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
    max-width: 580px;
}

.hero-visual {
    flex: 1;
    background-color: #ecf0f1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #3498db;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.intro-section {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background-color: #ffffff;
}

.intro-left {
    flex: 1.2;
}

.intro-left h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.3;
}

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

.intro-right {
    flex: 1;
    background-color: #ecf0f1;
}

.intro-right img {
    width: 100%;
    height: 100%;
}

.insight-full {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.insight-full h2 {
    font-size: 38px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

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

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

.insight-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 16px;
}

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

.services-preview {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background-color: #ffffff;
}

.services-visual {
    flex: 1;
    background-color: #ecf0f1;
}

.services-visual img {
    width: 100%;
    height: 100%;
}

.services-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.services-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 28px;
}

.service-list {
    margin-bottom: 32px;
}

.service-list li {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

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

.testimonial-section {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonial-content {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content blockquote {
    border-left: 4px solid #3498db;
    padding-left: 32px;
}

.testimonial-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 16px;
    font-style: normal;
    color: #bdc3c7;
}

.testimonial-image {
    flex: 1;
    background-color: #34495e;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
}

.pricing-section {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.pricing-section h2 {
    font-size: 38px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 60px;
}

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

.pricing-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 40px 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.featured {
    border: 2px solid #3498db;
}

.pricing-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.pricing-card .price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 24px;
}

.pricing-card ul {
    margin-bottom: 0;
}

.pricing-card ul li {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.pricing-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.form-section {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    background-color: #ffffff;
}

.form-intro {
    flex: 1;
}

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

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

.form-container {
    flex: 1.2;
}

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

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

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

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

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

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

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

.trust-section {
    padding: 80px 5%;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.trust-grid {
    display: flex;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 16px;
    color: #bdc3c7;
}

.footer {
    background-color: #1a252f;
    color: #bdc3c7;
    padding: 60px 5% 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px 5%;
    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: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.page-hero {
    display: flex;
    min-height: 400px;
    background-color: #f8f9fa;
}

.page-hero-content {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 18px;
    color: #bdc3c7;
}

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

.page-hero-image img {
    width: 100%;
    height: 100%;
}

.about-story {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background-color: #ffffff;
}

.story-content {
    flex: 1.3;
}

.story-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
}

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

.story-image {
    flex: 1;
    background-color: #ecf0f1;
}

.story-image img {
    width: 100%;
    height: 100%;
}

.approach-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.approach-section h2 {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

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

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

.approach-item h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 16px;
}

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

.team-expertise {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background-color: #ffffff;
}

.expertise-visual {
    flex: 1;
    background-color: #ecf0f1;
}

.expertise-visual img {
    width: 100%;
    height: 100%;
}

.expertise-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expertise-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.expertise-list {
    margin-top: 20px;
}

.expertise-list li {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.expertise-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.values-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

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

.value-block {
    flex: 1;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 8px;
}

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

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

.cta-about {
    padding: 100px 5%;
    background-color: #3498db;
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-about .cta-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-about .cta-primary:hover {
    background-color: #ecf0f1;
}

.services-header {
    padding: 80px 5%;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.services-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.services-header p {
    font-size: 18px;
    color: #bdc3c7;
}

.service-detail-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

.service-detail-section.alternate {
    background-color: #f8f9fa;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.service-detail-content .service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 24px;
}

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

.service-detail-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 16px;
    margin-top: 24px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

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

.service-detail-visual {
    flex: 1;
    background-color: #ecf0f1;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
}

.services-cta {
    padding: 80px 5%;
    background-color: #2c3e50;
    text-align: center;
    color: #ffffff;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #bdc3c7;
}

.contact-header {
    padding: 80px 5%;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.contact-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 18px;
    color: #bdc3c7;
}

.contact-info-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

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

.contact-info-block {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
}

.contact-info-block h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 16px;
}

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

.contact-approach {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background-color: #ffffff;
}

.approach-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.approach-visual {
    flex: 1;
    background-color: #ecf0f1;
}

.approach-visual img {
    width: 100%;
    height: 100%;
}

.office-info {
    padding: 60px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.office-info h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.office-info p {
    font-size: 17px;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.thanks-section {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    background-color: #f8f9fa;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 24px;
}

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

.service-confirmation {
    font-weight: 600;
    color: #3498db;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.thanks-visual {
    flex: 1;
    background-color: #ecf0f1;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
}

.next-steps {
    padding: 80px 5%;
    background-color: #ffffff;
}

.next-steps h2 {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

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

.step-item {
    flex: 1;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.step-item h3 {
    font-size: 24px;
    color: #3498db;
    margin-bottom: 16px;
}

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

.legal-page {
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 16px;
}

.legal-page h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-top: 24px;
    margin-bottom: 12px;
}

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

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-page ul li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 10px;
    list-style-type: disc;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #2980b9;
}

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

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

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

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

@media (max-width: 968px) {
    .hero-split,
    .intro-section,
    .services-preview,
    .testimonial-section,
    .form-section,
    .about-story,
    .team-expertise,
    .values-split,
    .service-detail,
    .contact-approach,
    .thanks-section,
    .page-hero {
        flex-direction: column;
    }

    .insight-grid,
    .trust-grid,
    .approach-grid,
    .footer-grid,
    .contact-info-grid,
    .steps-grid {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-right {
        gap: 16px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .nav-split {
        flex-direction: column;
        gap: 16px;
    }

    .hero-content,
    .intro-left,
    .services-content {
        padding: 40px 5%;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }
}