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

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

a {
    text-decoration: none;
    color: inherit;
}

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

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

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

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

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: #2c5f8d;
    color: #fff;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #1e4262;
    transform: translateY(-2px);
}

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

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

.intro-text {
    flex: 1.2;
}

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

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

.intro-image {
    flex: 0.8;
    overflow: hidden;
    border-radius: 8px;
}

.intro-image img {
    width: 100%;
}

.benefits-asymmetric {
    background: #f8f9fa;
    padding: 100px 40px;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.benefit-large {
    flex: 1.3;
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.benefit-large h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.benefit-large p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.benefit-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.benefit-card h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c5f8d;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

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

.services-header-split {
    text-align: center;
    margin-bottom: 70px;
}

.services-header-split h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-header-split p {
    font-size: 20px;
    color: #555;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-item {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

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

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

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

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

.service-content h3 {
    font-size: 30px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f8d;
    margin-top: 16px;
}

.form-section {
    background: linear-gradient(135deg, #2c5f8d 0%, #4a7c9e 100%);
    padding: 100px 40px;
}

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

.form-intro {
    flex: 1;
    color: #fff;
}

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

.form-intro p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.form-wrapper {
    flex: 1;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background: #2c5f8d;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.testimonials {
    padding: 100px 40px;
    background: #f8f9fa;
}

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

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

.testimonial {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 40px 30px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #aaa;
}

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

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

.footer-section ul li a {
    color: #aaa;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 24px 40px;
    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;
    color: #555;
}

.cookie-content a {
    color: #2c5f8d;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #2c5f8d;
    color: #fff;
}

.btn-accept:hover {
    background: #1e4262;
    transform: translateY(-2px);
}

.btn-reject {
    background: #e0e0e0;
    color: #333;
}

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

.page-header {
    background: linear-gradient(135deg, #2c5f8d 0%, #4a7c9e 100%);
    padding: 80px 40px;
    text-align: center;
    color: #fff;
}

.header-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.header-content p {
    font-size: 20px;
    opacity: 0.95;
}

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

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

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

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

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

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

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

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

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

.service-detail-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f8d;
    font-weight: 700;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f8d;
    margin-bottom: 24px;
}

.btn-service {
    display: inline-block;
    background: #2c5f8d;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
    margin-top: 16px;
}

.btn-service:hover {
    background: #1e4262;
    transform: translateY(-2px);
}

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

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.about-hero {
    background: linear-gradient(135deg, #2c5f8d 0%, #4a7c9e 100%);
    padding: 100px 40px;
    text-align: center;
    color: #fff;
}

.about-hero-content h1 {
    font-size: 54px;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 22px;
    opacity: 0.95;
}

.about-story {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.story-layout {
    display: flex;
    gap: 70px;
    align-items: center;
}

.story-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.story-content {
    flex: 1.2;
}

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

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.mission-section {
    background: #f8f9fa;
    padding: 100px 40px;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 60px;
}

.mission-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.mission-content p {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
}

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

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

.value-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c5f8d;
}

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

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

.expertise-split {
    display: flex;
    gap: 70px;
    align-items: center;
}

.expertise-content {
    flex: 1.2;
}

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

.expertise-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

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

.expertise-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 17px;
    color: #555;
}

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

.expertise-image {
    flex: 0.8;
    border-radius: 8px;
    overflow: hidden;
}

.expertise-image img {
    width: 100%;
}

.approach-section {
    background: #f8f9fa;
    padding: 100px 40px;
}

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

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

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

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

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

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

.commitment-layout {
    display: flex;
    gap: 70px;
    align-items: center;
}

.commitment-text {
    flex: 1.2;
}

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

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

.commitment-image {
    flex: 0.8;
    border-radius: 8px;
    overflow: hidden;
}

.commitment-image img {
    width: 100%;
}

.contact-layout {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
}

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

.contact-info-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

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

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

.contact-image-section {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-form-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

.contact-form-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.contact-form-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-form-intro p {
    font-size: 18px;
    color: #555;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5f8d;
}

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

.legal-page {
    padding: 60px 40px;
}

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

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

.legal-date {
    font-size: 15px;
    color: #888;
    margin-bottom: 40px;
}

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #333;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.legal-container ul {
    margin: 16px 0;
    padding-left: 40px;
}

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

.thanks-section {
    padding: 100px 40px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #2c5f8d;
    color: #fff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

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

.thanks-message {
    font-size: 20px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.thanks-details {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 50px;
    font-size: 18px;
    color: #2c5f8d;
    font-weight: 600;
}

.thanks-next-steps {
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.step {
    flex: 1;
    max-width: 250px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2c5f8d;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

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

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

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

.btn-primary {
    display: inline-block;
    background: #2c5f8d;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: #1e4262;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: #e0e0e0;
    color: #333;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .service-item,
    .service-detail-item,
    .story-layout,
    .expertise-split,
    .commitment-layout,
    .contact-layout,
    .form-container-split {
        flex-direction: column;
    }

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

    .benefits-container,
    .testimonials-layout,
    .mission-values,
    .approach-grid {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px 40px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

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

    .faq-item {
        flex: 1 1 100%;
    }

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

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

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

@media (max-width: 768px) {
    .nav-container {
        padding: 16px 20px;
    }

    .hero-content,
    .form-wrapper,
    .contact-form-container {
        padding: 40px 30px;
    }

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

    .services-header-split h2,
    .mission-content h2,
    .faq-section h2,
    .legal-container h1,
    .thanks-container h1 {
        font-size: 32px;
    }

    .intro-text h2,
    .story-content h2,
    .expertise-content h2,
    .commitment-text h2,
    .contact-info-section h2 {
        font-size: 28px;
    }

    .benefit-large,
    .benefit-card {
        padding: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}