<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary-color: #00b4d8;
    --light-color: #e6f7fc;
    --dark-color: #007a92;
    --text-color: #333;
    --white-color: #ffffff;
    --section-padding: 80px 0;
}

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

body {
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-color);
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section_title {
    text-align: center;
    margin-bottom: 50px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.navbar-brand img {
    height: 50px;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--dark-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.primary_btn, .secondary_btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-align: center;
}

.primary_btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 2px solid var(--primary-color);
}

.primary_btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.secondary_btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary_btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.hero_section {
    background-color: var(--light-color);
    padding: 120px 0;
    text-align: center;
}

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

.hero_content p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.services_section,
.about_section,
.workshops_section,
.contact_section {
    padding: var(--section-padding);
}

.services_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service_card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service_card:hover {
    transform: translateY(-10px);
}

.service_card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service_card h3, .service_card p {
    padding: 0 20px;
}

.service_card h3 {
    padding-top: 20px;
}

.service_card p {
    padding-bottom: 20px;
}

.about_wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about_content, .about_image {
    flex: 1;
}

.about_image img {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta_section {
    background-color: var(--primary-color);
    padding: 100px 0;
    text-align: center;
}

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

.cta_wrapper h2, .cta_wrapper p {
    color: var(--white-color);
}

.cta_wrapper .primary_btn {
    background-color: var(--white-color);
    color: var(--primary-color);
    border-color: var(--white-color);
    margin-top: 20px;
}

.cta_wrapper .primary_btn:hover {
    background-color: transparent;
    color: var(--white-color);
}

.workshops_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.workshop_card {
    display: flex;
    flex-direction: column;
    flex: 1 1 500px;
    max-width: 100%;
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.workshop_card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.workshop_content {
    padding: 30px;
}

.workshop_details {
    font-weight: 700;
    margin: 20px 0;
}

.contact_wrapper {
    display: flex;
    gap: 50px;
}

.contact_info, .contact_form {
    flex: 1;
}

.info_item {
    margin-bottom: 30px;
}

.form_group {
    margin-bottom: 20px;
}

.form_group label {
    display: block;
    margin-bottom: 5px;
    color: var(--dark-color);
    font-weight: 500;
}

.form_group input,
.form_group select,
.form_group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 9999px;
    border: 1px solid #ddd;
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
}

.form_group textarea {
    border-radius: 15px;
    resize: vertical;
}

.footer_section {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0 30px;
}

.footer_wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 30px;
}

.footer_logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer_links h3 {
    color: var(--white-color);
}

.footer_links ul {
    list-style: none;
}

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

.footer_links ul li a {
    color: var(--white-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_links ul li a:hover {
    color: var(--primary-color);
}

.footer_bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white-color);
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .hero_section {
        padding: 80px 0;
    }

    .about_wrapper {
        flex-direction: column;
    }

    .contact_wrapper {
        flex-direction: column;
    }

    .footer_wrapper {
        flex-direction: column;
        gap: 30px;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero_section {
        padding: 60px 0;
    }

    .service_card,
    .workshop_card {
        flex: 1 1 100%;
    }
}

/* Ð¡Ñ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ about.html */

.page_banner {
    background-color: var(--primary-color);
    padding: 100px 0;
    text-align: center;
}

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

.banner_content h1, .banner_content p {
    color: var(--white-color);
}

.about_detail_section,
.mission_section,
.team_section,
.testimonials_section {
    padding: var(--section-padding);
}

.about_detail_wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about_detail_content, .about_detail_image {
    flex: 1;
}

.mission_wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.mission_content, .mission_image {
    flex: 1;
}

.values_list {
    margin-top: 30px;
}

.value_item {
    margin-bottom: 20px;
}

.team_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team_card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team_card:hover {
    transform: translateY(-10px);
}

.team_card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team_card h3, .team_card p {
    padding: 0 20px;
}

.team_card h3 {
    padding-top: 20px;
    margin-bottom: 5px;
}

.position {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonials_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial_card {
    flex: 1 1 450px;
    max-width: 100%;
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial_text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.testimonial_text:before {
    content: '\201C';
    font-size: 4rem;
    position: absolute;
    left: -20px;
    top: -30px;
    color: var(--primary-color);
    opacity: 0.3;
}

.client_info h3 {
    margin-bottom: 5px;
}

/* Ð¡Ñ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ thankyou.php */

.thankyou_section {
    padding: 120px 0;
    text-align: center;
}

.thankyou_wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 50px;
}

.thankyou_icon {
    margin-bottom: 30px;
}

.check_mark {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: relative;
}

.check_mark:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 20px;
    border-bottom: 4px solid var(--white-color);
    border-right: 4px solid var(--white-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) rotate(45deg);
}

.thankyou_content h1 {
    margin-bottom: 20px;
}

.thankyou_content p {
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou_buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* ÐÐ´Ð°Ð¿Ñ‚Ð¸Ð²Ð½Ð¾ÑÑ‚ÑŒ Ð´Ð»Ñ Ð½Ð¾Ð²Ñ‹Ñ… ÑÑ‚Ñ€Ð°Ð½Ð¸Ñ† */

@media screen and (max-width: 768px) {
    .page_banner {
        padding: 80px 0;
    }

    .about_detail_wrapper,
    .mission_wrapper {
        flex-direction: column;
    }

    .mission_image {
        order: 2;
    }

    .mission_content {
        order: 1;
    }

    .thankyou_wrapper {
        padding: 30px;
    }

    .thankyou_buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media screen and (max-width: 576px) {
    .team_card,
    .testimonial_card {
        flex: 1 1 100%;
    }
}</pre></body></html>