* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
}

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

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

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

.main-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-notice {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

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

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent-color);
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-left p {
    font-size: 19px;
    color: var(--secondary-color);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-right {
    flex: 1;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    background-color: var(--light-bg);
    overflow: hidden;
}

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

.cta-hero {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-hero:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.intro-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.intro-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.7;
}

.approach-split {
    display: flex;
    min-height: 500px;
}

.approach-image {
    flex: 1;
    background-color: var(--light-bg);
}

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

.approach-content {
    flex: 1;
    padding: 60px 50px;
    background: var(--white);
}

.approach-content h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.pillar {
    margin-bottom: 28px;
}

.pillar h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.pillar p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.benefits-section {
    padding: 80px 20px;
    background: var(--white);
}

.benefits-section h2 {
    font-size: 38px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.benefit-card {
    flex: 1 1 calc(50% - 24px);
    min-width: 280px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 6px;
}

.benefit-card h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.benefit-card a {
    color: var(--accent-color);
    text-decoration: none;
}

.services-preview {
    padding: 80px 20px;
    background: var(--light-bg);
}

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.services-split-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    margin-bottom: 60px;
    background: var(--white);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.service-image {
    flex: 1;
    min-height: 300px;
    background-color: var(--light-bg);
}

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

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

.service-info h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
}

.testimonials-section {
    padding: 80px 20px;
    background: var(--white);
}

.testimonials-section h2 {
    font-size: 38px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

.testimonial {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    padding: 30px;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial cite {
    font-size: 14px;
    color: var(--secondary-color);
    font-style: normal;
    font-weight: 600;
}

.form-section {
    padding: 80px 20px;
    background: var(--primary-color);
}

.form-container-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
}

.form-left p {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.form-right {
    flex: 1;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #c0392b;
}

.disclaimer-section {
    padding: 60px 20px;
    background: #fff9e6;
    border-top: 2px solid #f39c12;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

.footer-section {
    flex: 1 1 220px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

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

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

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.references,
.references-small {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255,255,255,0.7);
}

.references a,
.references-small a {
    color: rgba(255,255,255,0.9);
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--accent-color);
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    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: 20px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-color);
}

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

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

.btn-accept {
    background: var(--success-color);
    color: var(--white);
}

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

.btn-reject {
    background: #95a5a6;
    color: var(--white);
}

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

.page-hero {
    background: var(--light-bg);
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.subtitle {
    font-size: 19px;
    color: var(--secondary-color);
}

.services-detail-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.service-detail-card {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--light-bg);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.price-large {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-note {
    font-size: 14px;
    font-style: italic;
    color: var(--secondary-color);
    margin-top: 20px;
}

.service-note a {
    color: var(--accent-color);
}

.cta-services-section {
    padding: 80px 20px;
    background: var(--light-bg);
    text-align: center;
}

.cta-services-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.cta-services-section p {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 32px;
}

.btn-cta-large {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.about-hero {
    background: var(--light-bg);
    padding: 100px 20px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.about-hero-content p {
    font-size: 20px;
    color: var(--secondary-color);
}

.story-section {
    padding: 80px 20px;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.story-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    background-color: var(--light-bg);
}

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

.philosophy-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.philosophy-section h2 {
    font-size: 38px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.philosophy-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.philosophy-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
}

.philosophy-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

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

.team-section {
    padding: 80px 20px;
    background: var(--white);
}

.team-section h2 {
    font-size: 38px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    font-size: 17px;
    color: var(--secondary-color);
    max-width: 700px;
    margin: 0 auto 50px;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-member {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 8px;
}

.member-info h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.role {
    font-size: 15px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.member-info p {
    font-size: 15px;
    line-height: 1.6;
}

.values-split {
    display: flex;
    min-height: 500px;
}

.values-content {
    flex: 1;
    padding: 60px 50px;
    background: var(--light-bg);
}

.values-content h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.value-item h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
}

.values-image {
    flex: 1;
    background-color: var(--light-bg);
}

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

.mission-section {
    padding: 80px 20px;
    background: var(--white);
}

.mission-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
    text-align: center;
}

.mission-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-page-section {
    padding: 60px 20px;
}

.contact-split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info-side {
    flex: 1;
    padding: 40px 0;
}

.contact-info-side h1 {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info-side > p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.contact-note {
    padding: 20px;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.contact-note p {
    font-size: 14px;
    line-height: 1.6;
}

.contact-image-side {
    flex: 1;
    background-color: var(--light-bg);
}

.contact-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.location-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.location-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

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

.location-text {
    flex: 1;
}

.location-text h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.location-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.location-map-placeholder {
    flex: 1;
}

.map-box {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-box p {
    font-size: 18px;
    color: var(--secondary-color);
}

.legal-page {
    padding: 60px 20px;
    background: var(--white);
}

.legal-page h1 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-page h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-page a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.service-info-box {
    padding: 20px;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.next-steps {
    font-size: 16px;
    margin-bottom: 30px;
}

.next-steps a {
    color: var(--accent-color);
}

.btn-back {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-back:hover {
    background: var(--secondary-color);
}

@media (max-width: 768px) {
    .container-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .main-nav {
        flex-direction: column;
        gap: 12px;
    }

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

    .hero-left {
        padding: 40px 30px;
    }

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

    .approach-split,
    .service-item,
    .story-layout,
    .values-split,
    .contact-split-layout,
    .form-container-split,
    .service-detail-card {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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