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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    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);
}

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-transform: lowercase;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-left p {
    font-size: 1.25rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    background-color: #e8edf2;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

.intro-image {
    flex: 1;
    background-color: #d4dce3;
}

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

.intro-text {
    flex: 1;
    padding: 4rem 3rem;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.2rem;
}

.services-grid {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #546e7a;
}

.service-card-split {
    display: flex;
    margin-bottom: 4rem;
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 3rem;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-info p {
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #546e7a;
}

.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-visual {
    flex: 1;
    min-height: 300px;
    background-color: #d4dce3;
}

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

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    background-color: #f8f9fa;
}

.form-left {
    flex: 1;
    padding: 4rem 3rem;
}

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-left p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    width: 28px;
    height: 28px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.form-right {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #dce1e6;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.trust-content {
    flex: 1.5;
}

.trust-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.trust-content p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.2rem;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #546e7a;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p,
.footer-section ul {
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 1rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    font-style: italic;
    color: #7f8c8d;
}

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

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

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

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

.about-story-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 3rem;
    padding: 0 2rem;
}

.story-text {
    flex: 1.5;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.2rem;
}

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

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

.approach-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.approach-grid-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.approach-item {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.approach-visual {
    flex: 1;
    background-color: #d4dce3;
    border-radius: 6px;
    overflow: hidden;
}

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

.approach-content {
    flex: 1;
}

.approach-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.approach-content p {
    font-size: 1.1rem;
    color: #546e7a;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 3rem;
}

.values-content {
    flex: 1.5;
}

.values-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.value-item p {
    font-size: 1.05rem;
    color: #546e7a;
}

.values-visual {
    flex: 1;
    background-color: #d4dce3;
    border-radius: 6px;
    overflow: hidden;
}

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

.team-simple {
    max-width: 900px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.team-simple h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.team-simple p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
}

.page-header-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 350px;
}

.header-text {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ecf0f1;
}

.header-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.header-text p {
    font-size: 1.15rem;
    color: #546e7a;
}

.header-visual {
    flex: 1;
    background-color: #d4dce3;
}

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

.services-detailed {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.service-block-split {
    display: flex;
    margin-bottom: 5rem;
    gap: 3rem;
}

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

.service-detail-info {
    flex: 1.5;
}

.service-detail-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-intro {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.service-detail-info h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.detail-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.detail-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #546e7a;
}

.detail-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.2rem;
}

.service-pricing-block {
    margin-top: 2.5rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.price-label {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-detail-visual {
    flex: 1;
    background-color: #d4dce3;
    border-radius: 6px;
    overflow: hidden;
}

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

.process-overview {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.process-overview h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.process-steps-split {
    display: flex;
    gap: 2rem;
}

.process-step {
    flex: 1;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: #ecf0f1;
    font-size: 1rem;
}

.cta-services {
    max-width: 900px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: #ecf0f1;
    border-radius: 6px;
}

.cta-services h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-services p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.contact-page-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

.contact-info-side {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #f8f9fa;
}

.contact-info-side h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-info-side > p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-item p {
    color: #546e7a;
    line-height: 1.8;
}

.contact-note {
    padding: 1.5rem;
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.contact-note p {
    color: #546e7a;
    margin: 0;
}

.contact-note a {
    color: #3498db;
    text-decoration: underline;
}

.contact-visual-side {
    flex: 1;
    background-color: #d4dce3;
}

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

.map-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.map-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
}

.map-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #ecf0f1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-info {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-info p {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
}

.thanks-page-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

.thanks-content {
    flex: 1.5;
    padding: 4rem 3rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.thanks-message {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.submission-details {
    padding: 1.5rem;
    background-color: #e8f8f5;
    border-left: 4px solid #27ae60;
    border-radius: 4px;
    margin-bottom: 3rem;
}

.submission-details p {
    margin: 0.5rem 0;
    color: #2c3e50;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-icon {
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-text p {
    color: #546e7a;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

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

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

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

.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-updated {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-page p {
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-page li {
    color: #546e7a;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .form-section-split,
    .trust-split,
    .about-story-split,
    .approach-item,
    .values-split,
    .page-hero-split,
    .page-header-split,
    .service-block-split,
    .contact-page-split,
    .thanks-page-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .service-card-split.reverse,
    .approach-item.reverse,
    .service-block-split.reverse {
        flex-direction: column;
    }

    .process-steps-split {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        padding: 1rem 2rem;
        border-top: 1px solid #e1e8ed;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-left p {
        font-size: 1.1rem;
    }

    .section-header-center h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .ad-disclosure {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
}