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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.layout-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #1a2332 0%, #2c3e50 100%);
    color: #ecf0f1;
    padding: 2rem 1.5rem;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.brand-section {
    margin-bottom: 3rem;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.brand-tagline {
    font-size: 0.9rem;
    color: #bdc3c7;
    font-style: italic;
}

.main-nav ul {
    list-style: none;
}

.main-nav li {
    margin-bottom: 0.5rem;
}

.main-nav a {
    display: block;
    padding: 0.75rem 1rem;
    color: #ecf0f1;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background-color: rgba(52, 152, 219, 0.2);
    color: #3498db;
    padding-left: 1.5rem;
}

.sidebar-cta {
    margin-top: auto;
    padding: 1.5rem;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 8px;
    text-align: center;
}

.cta-label {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: #bdc3c7;
}

.btn-sidebar {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.ad-disclosure {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.ad-disclosure small {
    font-size: 0.75rem;
    color: #95a5a6;
}

.content-area {
    margin-left: 280px;
    flex: 1;
    min-height: 100vh;
}

.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85), rgba(52, 152, 219, 0.75));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 4rem;
}

.hero-overlay h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    max-width: 700px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.25rem;
    color: #ecf0f1;
    max-width: 600px;
    line-height: 1.6;
}

.intro-section {
    padding: 4rem 4rem;
    background-color: white;
}

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

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.services-preview {
    padding: 4rem 4rem;
    background-color: #ecf0f1;
}

.services-preview h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

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

.service-card {
    display: flex;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-image {
    flex: 0 0 40%;
    background-color: #bdc3c7;
}

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

.service-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

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

.service-content p {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    flex: 1;
}

.price-tag {
    font-size: 1.25rem;
    color: #3498db;
    font-weight: 700;
}

.services-cta {
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a2332;
    transform: translateY(-2px);
}

.why-us-section {
    padding: 4rem 4rem;
    background-color: white;
}

.why-us-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.reasons-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reason-block {
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 6px;
}

.reason-block h5 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.reason-block p {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.7;
}

.contact-form-section {
    padding: 4rem 4rem;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

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

.form-header h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.consultation-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.checkbox-group a {
    color: #3498db;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-primary {
    width: 100%;
    padding: 1rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 3rem 4rem;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #856404;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h6 {
    font-size: 1.1rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.9rem;
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

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

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

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

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    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: 2rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

@media (max-width: 1024px) {
    .sidebar {
        width: 240px;
    }

    .content-area {
        margin-left: 240px;
    }

    .hero-overlay h2 {
        font-size: 2.5rem;
    }

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

    .service-image {
        flex: 0 0 250px;
    }

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

.page-header {
    padding: 4rem 4rem 3rem;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
}

.page-header-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

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

.services-detailed {
    padding: 3rem 4rem;
    background-color: white;
}

.service-detail-card {
    display: flex;
    margin-bottom: 4rem;
    gap: 3rem;
    align-items: center;
}

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

.service-detail-image {
    flex: 0 0 45%;
    background-color: #bdc3c7;
    border-radius: 10px;
    overflow: hidden;
}

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

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

.service-detail-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.25rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #7f8c8d;
    line-height: 1.7;
    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: #34495e;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.price-amount {
    font-size: 1.75rem;
    color: #3498db;
    font-weight: 700;
}

.service-cta {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.pricing-note {
    padding: 3rem 4rem;
    background-color: #ecf0f1;
}

.pricing-note-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pricing-note-content h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.pricing-note-content p {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.7;
}

.about-intro {
    padding: 4rem 4rem;
    background-color: white;
}

.about-intro-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.05rem;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-image {
    flex: 0 0 40%;
    background-color: #bdc3c7;
    border-radius: 10px;
    overflow: hidden;
}

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

.values-section {
    padding: 4rem 4rem;
    background-color: #f8f9fa;
}

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

.values-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.value-card {
    flex: 1;
    max-width: 320px;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.experience-section {
    padding: 4rem 4rem;
    background-color: white;
}

.experience-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.experience-content p {
    font-size: 1.05rem;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.experience-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.stat-label {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.approach-section {
    padding: 4rem 4rem;
    background-color: #ecf0f1;
}

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

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

.step-card {
    flex: 1;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 1rem;
}

.step-card h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.step-card p {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.commitment-section {
    padding: 4rem 4rem;
    background-color: white;
    text-align: center;
}

.commitment-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.commitment-content p {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

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

.contact-page-section {
    padding: 4rem 4rem;
    background-color: white;
}

.contact-info-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    flex: 1;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.contact-info-card h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-info-card p {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-note {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
    border-radius: 6px;
}

.contact-note h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-note p {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

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

.contact-note a:hover {
    text-decoration: underline;
}

.location-section {
    padding: 3rem 4rem;
    background-color: #f8f9fa;
}

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

.location-section p {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.7;
    max-width: 800px;
}

.thanks-section {
    padding: 6rem 4rem;
    background-color: white;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 2rem;
}

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

.thanks-content p {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-selected {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e8f4f8;
    color: #3498db;
    border-radius: 6px;
    font-weight: 600;
    margin: 2rem 0;
}

.thanks-actions {
    margin-top: 3rem;
}

.legal-page {
    padding: 4rem 4rem;
    background-color: white;
}

.legal-content {
    max-width: 900px;
}

.legal-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
}

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

.legal-content h4 {
    font-size: 1.3rem;
    color: #34495e;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-content p {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

.legal-content li {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

@media (max-width: 1024px) {
    .sidebar {
        width: 240px;
    }

    .content-area {
        margin-left: 240px;
    }

    .hero-overlay h2 {
        font-size: 2.5rem;
    }

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

    .service-image {
        flex: 0 0 250px;
    }

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

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

    .about-intro-layout {
        flex-direction: column;
    }

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

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

    .contact-info-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        position: relative;
        height: auto;
    }

    .content-area {
        margin-left: 0;
    }

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

    .hero-overlay {
        padding: 0 2rem;
    }

    .hero-overlay h2 {
        font-size: 2rem;
    }

    .intro-section,
    .services-preview,
    .why-us-section,
    .contact-form-section,
    .disclaimer-section,
    .services-detailed,
    .pricing-note,
    .about-intro,
    .values-section,
    .experience-section,
    .approach-section,
    .commitment-section,
    .contact-page-section,
    .thanks-section,
    .legal-page {
        padding: 2rem 1.5rem;
    }

    .consultation-form {
        padding: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .main-footer {
        padding: 2rem 1.5rem 1rem;
    }

    .experience-stats {
        flex-direction: column;
        gap: 2rem;
    }
}