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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

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

.btn-accept {
    background: #2196F3;
    color: #fff;
}

.btn-accept:hover {
    background: #1976D2;
}

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

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

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

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

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    color: #1976D2;
}

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

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

.nav-links a:hover {
    color: #2196F3;
}

.ad-notice {
    background: #FFF3E0;
    color: #E65100;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

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

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

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

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    background: #2196F3;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #1976D2;
}

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

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-reverse {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

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

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

.intro-text {
    flex: 1;
    padding: 40px 60px;
}

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

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

.services-showcase {
    background: #fafafa;
    padding: 80px 40px;
}

.section-header-centered {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

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

.section-header-centered p {
    font-size: 18px;
    color: #666;
}

.service-card-split {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.service-visual {
    flex: 1;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2196F3;
    margin: 20px 0;
}

.select-service {
    padding: 14px 30px;
    background: #2196F3;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background: #1976D2;
}

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

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

.trust-grid {
    display: flex;
    gap: 40px;
}

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1976D2;
}

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

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
}

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    font-size: 16px;
    color: #2196F3;
    font-weight: 600;
}

.form-container {
    flex: 1;
    background: #f5f5f5;
    padding: 40px;
    border-radius: 10px;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 16px 40px;
    background: #2196F3;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1976D2;
}

.final-cta {
    background: linear-gradient(135deg, #1976D2 0%, #2196F3 100%);
    padding: 80px 40px;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
}

.cta-secondary {
    display: inline-block;
    background: #fff;
    color: #1976D2;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #f5f5f5;
}

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

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

.footer-column {
    flex: 1;
}

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

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

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

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

.page-hero-split {
    display: flex;
    min-height: 400px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

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

.hero-text-side p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.hero-visual-side {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
}

.hero-visual-side img {
    width: 100%;
    height: 100%;
    display: block;
}

.story-section {
    padding: 80px 40px;
    background: #fafafa;
}

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

.story-block {
    flex: 1;
}

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

.story-block p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

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

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

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

.values-visual {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.values-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-content {
    flex: 1;
}

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

.value-item {
    margin-bottom: 30px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1976D2;
}

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

.methodology-section {
    padding: 80px 40px;
    background: #fafafa;
}

.method-header {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

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

.method-header p {
    font-size: 17px;
    color: #666;
}

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

.step-card {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-size: 42px;
    font-weight: 700;
    color: #2196F3;
    margin-bottom: 20px;
}

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

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

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

.team-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.expertise-card {
    flex: 1;
    background: #f5f5f5;
    padding: 35px;
    border-radius: 10px;
}

.expertise-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1976D2;
}

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

.cta-about {
    background: #1976D2;
    padding: 80px 40px;
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #1976D2;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #f5f5f5;
}

.services-hero {
    background: linear-gradient(135deg, #1976D2 0%, #2196F3 100%);
    padding: 100px 40px;
    text-align: center;
    color: #fff;
}

.services-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-hero-content p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    padding: 80px 40px;
}

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

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

.service-content-left,
.service-content-right {
    flex: 1;
}

.service-content-left h2,
.service-content-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-includes {
    margin: 25px 0;
}

.service-includes h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-includes ul {
    padding-left: 20px;
}

.service-includes ul li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #555;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin: 25px 0;
}

.price-label {
    font-size: 16px;
    color: #666;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #2196F3;
}

.service-cta {
    display: inline-block;
    background: #2196F3;
    color: #fff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.service-cta:hover {
    background: #1976D2;
}

.service-image-right,
.service-image-left {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.service-image-right img,
.service-image-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-comparison {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 40px;
    background: #fafafa;
    border-radius: 10px;
}

.services-comparison h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

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

.comparison-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1976D2;
}

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

.services-cta {
    padding: 80px 40px;
    text-align: center;
}

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

.services-cta p {
    font-size: 17px;
    color: #666;
    margin-bottom: 30px;
}

.cta-button-alt {
    display: inline-block;
    background: #2196F3;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.cta-button-alt:hover {
    background: #1976D2;
}

.contact-hero {
    background: linear-gradient(135deg, #1976D2 0%, #2196F3 100%);
    padding: 100px 40px;
    text-align: center;
    color: #fff;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-info-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: #f5f5f5;
    padding: 35px;
    border-radius: 10px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1976D2;
}

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

.contact-visual {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-additional {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

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

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

.additional-content a {
    color: #2196F3;
}

.contact-notice {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.contact-notice h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1976D2;
}

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

.contact-map-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.map-notice {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-section {
    padding: 100px 40px;
    min-height: 500px;
}

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

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

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

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

.service-selected {
    display: none;
    margin: 30px 0;
}

.selected-service-box {
    background: #E3F2FD;
    padding: 20px;
    border-radius: 8px;
    font-size: 17px;
    color: #1976D2;
}

.thanks-next-steps {
    margin: 50px 0;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.step-badge {
    width: 40px;
    height: 40px;
    background: #2196F3;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    flex: 1;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    padding-top: 8px;
}

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

.btn-primary {
    display: inline-block;
    background: #2196F3;
    color: #fff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1976D2;
}

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

.btn-secondary:hover {
    background: #2196F3;
    color: #fff;
}

.thanks-info {
    background: #fafafa;
    padding: 60px 40px;
}

.info-blocks {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.info-block {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-radius: 10px;
}

.info-block h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1976D2;
}

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

.info-block a {
    color: #2196F3;
}

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

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

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

.legal-update {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

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

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

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

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

.legal-section ul {
    padding-left: 25px;
    margin-bottom: 15px;
}

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

.legal-section a {
    color: #2196F3;
    text-decoration: none;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-reverse,
    .form-section-split,
    .values-split,
    .contact-layout,
    .story-container {
        flex-direction: column;
    }

    .service-card-split,
    .service-detail-card {
        flex-direction: column;
    }

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

    .trust-grid,
    .method-steps,
    .expertise-grid,
    .comparison-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-left h1,
    .hero-text-side h1 {
        font-size: 36px;
    }

    .page-hero-split {
        flex-direction: column;
        padding: 60px 40px;
    }

    .hero-text-side {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

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

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

    .hero-left,
    .intro-text,
    .service-details {
        padding: 40px 30px;
    }

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

    .info-blocks {
        flex-direction: column;
    }
}