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

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

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5c8a;
}

.ad-disclosure {
    background-color: #ecf0f1;
    color: #7f8c8d;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    border-bottom: 1px solid #dce0e1;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #5a6c7d;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2980b9;
}

.hero-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-text-column {
    flex: 1;
}

.hero-image-column {
    flex: 1;
    background-color: #d6dce3;
}

.hero-image-column img {
    width: 100%;
    border-radius: 8px;
}

.hero-section h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 800;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    background-color: #2980b9;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #1a5c8a;
    color: #ffffff;
    transform: translateY(-2px);
}

.intro-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.main-column {
    flex: 2;
}

.sidebar-column {
    flex: 1;
}

.main-column h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
    line-height: 1.3;
}

.main-column p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.info-card {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #4a5568;
}

.info-card ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2980b9;
}

.featured-content {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

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

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

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card.large-card {
    flex: 1 1 100%;
}

.service-card.featured-large {
    flex: 1 1 100%;
    background: linear-gradient(135deg, #fdfeff 0%, #f3f6f9 100%);
}

.card-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.card-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a252f;
}

.card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.select-service-btn {
    background-color: #2980b9;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: auto;
}

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

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

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.testimonial-wrapper blockquote {
    flex: 1;
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    padding: 0;
}

.testimonial-wrapper blockquote p {
    margin-bottom: 16px;
}

.testimonial-wrapper blockquote footer {
    font-size: 16px;
    font-style: normal;
    color: #bdc3c7;
    margin-top: 12px;
}

.form-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

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

.form-intro p {
    font-size: 18px;
    color: #5a6c7d;
}

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

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #dce0e1;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2980b9;
}

.submit-button {
    width: 100%;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.info-grid {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.grid-two-column {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.info-block {
    flex: 1;
}

.info-block h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.info-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.info-block img {
    width: 100%;
    border-radius: 8px;
}

.main-footer {
    background-color: #1a252f;
    color: #bdc3c7;
    padding: 60px 40px 40px;
}

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

.footer-column {
    flex: 1;
}

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

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

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

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

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

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

.disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #34495e;
    font-size: 13px;
    line-height: 1.7;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

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

.cookie-btn.reject:hover {
    background-color: #6c7a7b;
    transform: translateY(-2px);
}

.page-content {
    padding: 60px 40px 100px;
    min-height: 60vh;
}

.page-header {
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a252f;
}

.page-subtitle {
    font-size: 20px;
    color: #5a6c7d;
}

.about-story {
    max-width: 1400px;
    margin: 0 auto;
}

.story-layout {
    display: flex;
    gap: 60px;
}

.story-main {
    flex: 2;
}

.story-sidebar {
    flex: 1;
}

.story-main h2 {
    font-size: 34px;
    margin: 40px 0 20px;
    color: #1a252f;
}

.story-main h2:first-child {
    margin-top: 0;
}

.story-main p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.story-main img {
    width: 100%;
    border-radius: 8px;
    margin: 40px 0;
}

.story-sidebar .info-box {
    background-color: #f8f9fa;
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 28px;
}

.story-sidebar .info-box h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.story-sidebar .info-box ul {
    list-style: none;
    padding: 0;
}

.story-sidebar .info-box ul li {
    padding: 6px 0;
    color: #4a5568;
}

.story-sidebar .info-box p {
    color: #4a5568;
    line-height: 1.7;
}

.mission-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 60px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.mission-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.mission-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.team-approach {
    max-width: 1200px;
    margin: 80px auto;
}

.team-approach h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a252f;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.approach-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2980b9;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail {
    margin-bottom: 80px;
}

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

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

.service-image {
    flex: 1;
    background-color: #e9ecef;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a252f;
}

.price-display {
    font-size: 40px;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 24px;
}

.service-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.service-info h3 {
    font-size: 22px;
    margin: 28px 0 12px;
    color: #2c3e50;
}

.service-info ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.service-info ul li {
    margin-bottom: 8px;
    color: #4a5568;
    line-height: 1.7;
}

.cta-section {
    margin: 80px auto;
    max-width: 800px;
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a252f;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.cta-button-large {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 18px 48px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button-large:hover {
    background-color: #229954;
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-info-section {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-main {
    flex: 2;
}

.contact-sidebar {
    flex: 1;
}

.contact-main h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.contact-main p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

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

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.response-info {
    background-color: #f8f9fa;
    padding: 28px;
    border-radius: 8px;
    margin-top: 40px;
}

.response-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.response-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.location-info {
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.location-info h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a252f;
}

.location-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
}

.thanks-page {
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 80px 60px;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

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

.thanks-message {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.thanks-info {
    margin-bottom: 48px;
}

.thanks-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #4a5568;
}

.next-steps {
    text-align: left;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a252f;
}

.next-steps ol {
    padding-left: 24px;
}

.next-steps ol li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

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

.cta-button-secondary {
    display: inline-block;
    background-color: #7f8c8d;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button-secondary:hover {
    background-color: #6c7a7b;
    color: #ffffff;
    transform: translateY(-2px);
}

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

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: #1a252f;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    margin: 28px 0 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.legal-content ul {
    margin: 16px 0 24px;
    padding-left: 28px;
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: #4a5568;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

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

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

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial-wrapper {
        flex-direction: column;
    }

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

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

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

    .service-detail.alternate .service-layout {
        flex-direction: column;
    }

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

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

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

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

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

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

    .page-header h1 {
        font-size: 36px;
    }
}