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

a {
    text-decoration: none;
    color: inherit;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

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

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

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

.main-nav {
    background-color: #ffffff;
    padding: 1.5rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-items {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.ad-notice {
    background-color: #f39c12;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

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

main {
    min-height: 70vh;
}

.hero-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.hero-content-offset {
    flex: 1;
    padding-left: 4rem;
    z-index: 10;
}

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

.hero-content-offset p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    transform: translateX(-2rem) translateY(2rem);
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    background-color: #ecf0f1;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #95a5a6;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #7f8c8d;
}

.intro-irregular {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-text-block {
    flex: 1.5;
    padding-right: 2rem;
}

.intro-text-block h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-text-block p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.intro-image-offset {
    flex: 1;
    transform: translateY(-3rem);
}

.intro-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #ecf0f1;
}

.services-creative {
    background-color: #ecf0f1;
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.services-creative h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #34495e;
}

.services-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card.offset-left {
    margin-right: 10rem;
}

.service-card.offset-right {
    margin-left: 10rem;
}

.service-card.offset-center {
    margin-left: 5rem;
    margin-right: 5rem;
}

.service-image {
    flex: 1;
}

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

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

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

.service-content p {
    margin-bottom: 1rem;
    color: #34495e;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #27ae60;
    margin: 1.5rem 0;
}

.btn-select {
    padding: 0.75rem 1.5rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.evidence-section {
    max-width: 900px;
    margin: 5rem auto;
    padding: 3rem;
    background-color: #fff;
    border-left: 5px solid #3498db;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.evidence-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

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

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

.testimonials-irregular {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.testimonials-irregular h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial.offset-a {
    margin-right: 8rem;
}

.testimonial.offset-b {
    margin-left: 8rem;
}

.testimonial.offset-c {
    margin-right: 4rem;
    margin-left: 4rem;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #34495e;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
}

.form-section {
    background-color: #2c3e50;
    padding: 5rem 2rem;
    margin: 4rem 0 0 0;
}

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

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

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
}

.course-form {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

.disclaimer-section {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #ffeaa7;
    border-radius: 8px;
}

.disclaimer {
    font-size: 0.95rem;
    color: #2c3e50;
    line-height: 1.8;
}

.main-footer {
    background-color: #34495e;
    color: white;
    padding: 3rem 2rem 1rem;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-column p {
    margin-bottom: 1rem;
    color: #bdc3c7;
}

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

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

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

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

.references {
    list-style: decimal;
    padding-left: 1.5rem;
}

.references li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #7f8c8d;
    color: #bdc3c7;
}

.about-hero {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.about-intro-block h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-intro-block p {
    font-size: 1.25rem;
    color: #34495e;
}

.mission-asymmetric {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.mission-image-left {
    flex: 1;
    transform: translateX(-2rem);
}

.mission-image-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #ecf0f1;
}

.mission-text {
    flex: 1;
    padding-left: 2rem;
}

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

.mission-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.values-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    background-color: #ecf0f1;
    border-radius: 8px;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.value-card p {
    color: #34495e;
}

.team-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.team-intro {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.team-image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #ecf0f1;
}

.approach-section {
    max-width: 900px;
    margin: 5rem auto;
    padding: 3rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.approach-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.approach-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.approach-content ul li {
    margin-bottom: 0.75rem;
    color: #34495e;
}

.cta-about {
    text-align: center;
    padding: 4rem 2rem;
}

.cta-about h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.services-hero {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

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

.services-hero p {
    font-size: 1.25rem;
    color: #34495e;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

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

.service-detail.offset-style-a {
    margin-right: 4rem;
}

.service-detail.offset-style-b {
    margin-left: 4rem;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #ecf0f1;
}

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

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

.price-large {
    font-size: 2rem;
    font-weight: bold;
    color: #27ae60;
    margin: 1rem 0;
}

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

.service-detail-content p {
    margin-bottom: 1rem;
    color: #34495e;
}

.service-detail-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.5rem;
    color: #34495e;
}

.contact-hero {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

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

.contact-hero p {
    font-size: 1.25rem;
    color: #34495e;
}

.contact-content-asymmetric {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

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

.contact-item p {
    color: #34495e;
}

.contact-image-offset {
    flex: 1;
    transform: translateY(2rem);
}

.contact-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #ecf0f1;
}

.contact-additional {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

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

.contact-additional p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.contact-additional a {
    color: #3498db;
    text-decoration: underline;
}

.location-info {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.location-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.location-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.location-info ul {
    padding-left: 1.5rem;
}

.location-info ul li {
    margin-bottom: 0.5rem;
    color: #34495e;
}

.thanks-hero {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1.5;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.thanks-details {
    background-color: #ecf0f1;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.next-steps ol {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.next-steps ol li {
    margin-bottom: 1rem;
    color: #34495e;
}

.thanks-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.thanks-image {
    flex: 1;
}

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #ecf0f1;
}

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.legal-content p {
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.75rem;
    color: #34495e;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-asymmetric,
    .intro-irregular,
    .mission-asymmetric,
    .contact-content-asymmetric,
    .thanks-hero,
    .service-detail {
        flex-direction: column;
    }

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

    .service-card.offset-left,
    .service-card.offset-right,
    .service-card.offset-center,
    .service-detail.offset-style-a,
    .service-detail.offset-style-b,
    .testimonial.offset-a,
    .testimonial.offset-b,
    .testimonial.offset-c {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-content-offset,
    .mission-text {
        padding-left: 0;
    }

    .hero-image-overlap,
    .intro-image-offset,
    .mission-image-left,
    .contact-image-offset {
        transform: none;
    }

    .nav-items {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-content-offset h1,
    .about-intro-block h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

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