* {
    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: #2c3e50;
    background: #ffffff;
}

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

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

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

.ad-notice {
    font-size: 0.8rem;
    color: #95a5a6;
    padding: 0.3rem 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem;
    background: #f8f9fa;
}

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

.hero-text p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 550px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #34495e;
}

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

.intro-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

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

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

.intro-content {
    flex: 1;
}

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

.intro-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

.services-overview {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.services-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    background: #ecf0f1;
    height: 240px;
    overflow: hidden;
}

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

.service-info {
    padding: 2rem;
}

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

.service-info p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

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

.select-service {
    width: 100%;
    padding: 0.9rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #2980b9;
}

.form-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

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

.form-field {
    margin-bottom: 1.8rem;
}

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

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-field input[readonly] {
    background: #ecf0f1;
    cursor: not-allowed;
}

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

.btn-submit:hover {
    background: #34495e;
}

.trust-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.trust-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.trust-text {
    flex: 1;
}

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

.trust-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

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

.trust-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #5a6c7d;
}

.trust-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 1.2rem;
}

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

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

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.2rem;
}

.footer-column p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    font-size: 0.85rem;
    color: #95a5a6;
    line-height: 1.6;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.btn-reject {
    background: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background: #95a5a6;
}

.about-hero,
.services-hero,
.contact-hero,
.thanks-hero {
    padding: 6rem 2rem;
    text-align: center;
    background: #f8f9fa;
}

.about-hero-content h1,
.services-hero-content h1,
.contact-hero-content h1,
.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-hero-content p,
.services-hero-content p,
.contact-hero-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
}

.about-story-split {
    padding: 6rem 2rem;
    background: #ffffff;
}

.about-story-split,
.process-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

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

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

.story-content,
.process-text {
    flex: 1;
}

.story-content h2,
.process-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

.values-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.team-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.team-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-intro p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.team-visual {
    max-width: 1400px;
    margin: 0 auto;
    background: #ecf0f1;
}

.team-visual img {
    width: 100%;
}

.process-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.process-steps {
    margin-top: 2rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    min-width: 60px;
}

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

.step-content p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.cta-section {
    padding: 6rem 2rem;
    background: #2c3e50;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.services-detailed {
    padding: 6rem 2rem;
    background: #ffffff;
}

.service-detail-item {
    max-width: 1400px;
    margin: 0 auto 6rem;
    display: flex;
    gap: 5rem;
    align-items: center;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #5a6c7d;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.5rem;
}

.service-pricing {
    margin-bottom: 1.5rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 0.3rem;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
}

.contact-info-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.contact-info-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 2.5rem;
}

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

.contact-item p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

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

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

.contact-approach {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.approach-content {
    max-width: 1400px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.approach-step {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
}

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

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

.approach-step p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-cta {
    padding: 6rem 2rem;
    background: #ffffff;
    text-align: center;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.cta-box p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.thanks-hero {
    padding: 8rem 2rem;
    text-align: center;
    background: #f8f9fa;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.thanks-details {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.thanks-details p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #7f8c8d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #95a5a6;
}

.next-steps {
    padding: 6rem 2rem;
    background: #ffffff;
}

.next-steps-container {
    max-width: 1400px;
    margin: 0 auto;
}

.next-steps-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.step-box {
    flex: 1 1 calc(25% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

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

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

.step-box p {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.legal-page {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-container p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

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

.legal-container ul li {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-container,
    .trust-content,
    .about-story-split,
    .process-container,
    .service-detail-item,
    .contact-info-container {
        flex-direction: column;
    }

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

    .service-card,
    .value-item,
    .approach-step {
        flex: 1 1 100%;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }

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

    .cookie-content {
        flex-direction: column;
    }
}