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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container.narrow {
    max-width: 800px;
}

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background: #229954;
}

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

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

.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 10px;
    border: 1px solid #ecf0f1;
    border-radius: 3px;
}

.hero-section {
    position: relative;
    margin-bottom: 80px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.story-intro {
    padding: 80px 0;
    background: #ffffff;
}

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

.story-intro p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #34495e;
}

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.insight-card {
    margin: 50px 0;
    background: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.insight-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.insight-text {
    padding: 40px;
}

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

.insight-text p {
    font-size: 18px;
    color: #34495e;
}

.problem-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #34495e;
}

.problem-list {
    list-style: none;
    margin-top: 30px;
}

.problem-list li {
    padding: 15px 0 15px 30px;
    position: relative;
    font-size: 17px;
    color: #34495e;
}

.problem-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.split-image {
    flex: 1;
    background-color: #bdc3c7;
}

.split-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.solution-intro {
    padding: 80px 0;
    background: #ffffff;
}

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

.solution-intro p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #34495e;
}

.approach-section {
    padding: 80px 0;
    background: #2c3e50;
    color: #ffffff;
}

.section-title-center {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.approach-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.approach-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
}

.approach-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.approach-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.approach-card p {
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-section {
    padding: 80px 0;
    background: #ecf0f1;
}

.testimonial {
    font-size: 22px;
    font-style: italic;
    color: #2c3e50;
    border-left: 4px solid #3498db;
    padding-left: 30px;
    margin: 0;
}

.testimonial cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #7f8c8d;
}

.services-preview {
    padding: 80px 0;
    background: #ffffff;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    gap: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    background-color: #bdc3c7;
}

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

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-select {
    align-self: flex-start;
    padding: 12px 30px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-select.selected {
    background: #27ae60;
}

.cta-section {
    padding: 60px 0 30px 0;
    background: #ffffff;
    text-align: center;
}

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

.cta-section p {
    font-size: 18px;
    color: #7f8c8d;
}

.form-section {
    padding: 30px 0 80px 0;
    background: #ffffff;
}

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

.form-notice {
    background: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 30px;
    border-left: 4px solid #ffc107;
}

.form-notice.hidden {
    display: none;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
}

.service-display {
    padding: 12px;
    background: #ffffff;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    color: #34495e;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover:not(:disabled) {
    background: #229954;
}

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.references-section {
    padding: 60px 0;
    background: #ecf0f1;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.references-list {
    list-style: decimal;
    padding-left: 25px;
}

.references-list li {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    padding: 60px 0;
    background: #ffffff;
}

.disclaimer {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.8;
    border: 1px solid #ecf0f1;
    padding: 20px;
    border-radius: 4px;
    background: #f8f9fa;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #95a5a6;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.footer-contact h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-contact p {
    color: #95a5a6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .split-layout {
        flex-direction: column;
    }

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

    .service-card {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

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

    .nav {
        width: 100%;
        justify-content: center;
    }
}
