@font-face {
    font-family: 'Baloo';
    src: url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&display=swap');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff0000;
    --secondary-color: #000000;
    --light-color: #ffffff;
    --grey-color: #f1f1f1;
    --dark-grey: #333333;
    --accent-color: #ff3333;
    --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Baloo', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--light-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--dark-grey);
    max-width: 700px;
    margin: 0 auto;
}

.button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.primary-button {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: 2px solid var(--primary-color);
}

.primary-button:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.secondary-button {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.header {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    gap: 20px;
}

.nav-link {
    position: relative;
    padding: 5px 0;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    cursor: pointer;
}

.burger-menu span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--light-color);
    transition: all 0.3s ease;
}

.hero {
    padding: 100px 0;
    background: linear-gradient(to right, var(--secondary-color), #333);
    color: var(--light-color);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: var(--text-shadow);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    position: relative;
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0);
}

.hero-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.about {
    background-color: var(--grey-color);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hexagon-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hexagon {
    position: relative;
    width: 200px;
    height: 230.94px;
    background-color: var(--secondary-color);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.hexagon:hover {
    transform: scale(1.05);
}

.hexagon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hexagon:hover img {
    opacity: 1;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 15px;
    text-align: justify;
}

.diagonal-section {
    position: relative;
}

.diagonal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
    transform: skewY(-3deg);
    z-index: -1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    background-color: var(--primary-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--dark-grey);
}

.waves-section {
    position: relative;
    background-color: var(--grey-color);
}

.waves-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ff0000" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,149.3C672,149,768,171,864,165.3C960,160,1056,128,1152,112C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
    z-index: -1;
}

.programs-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.program-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    flex: 1 1 300px;
    min-width: 300px;
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: scale(1.03);
}

.program-image {
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-content {
    padding: 20px;
}

.program-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.program-content p {
    margin-bottom: 15px;
    color: var(--dark-grey);
}

.program-features {
    margin: 15px 0;
    padding-left: 20px;
}

.program-features li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 15px;
}

.program-features li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.triangle-section {
    position: relative;
}

.triangle-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(255, 0, 0, 0.8));
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0% 100%);
    opacity: 0.05;
    z-index: -1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark-grey);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--dark-grey);
}

.rhombus-section {
    position: relative;
}

.rhombus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 0, 0, 0.05);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    z-index: -1;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-item p {
    margin-bottom: 8px;
    color: var(--dark-grey);
}

.contact-form-wrapper {
    flex: 2;
    min-width: 300px;
}

.contact-form {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo,
.footer-navigation,
.footer-policies,
.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-logo .logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-navigation h3,
.footer-policies h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-navigation h3::after,
.footer-policies h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-navigation ul,
.footer-policies ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-navigation a,
.footer-policies a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-navigation a:hover,
.footer-policies a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.thankyou-section {
    padding: 100px 0;
    text-align: center;
}

.thankyou-content {
    max-width: 700px;
    margin: 0 auto;
}

.thankyou-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thankyou-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.thankyou-content p {
    margin-bottom: 15px;
    color: var(--dark-grey);
}

.thankyou-buttons {
    margin-top: 30px;
}

.policy-section {
    padding: 80px 0;
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.policy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.policy-date {
    font-size: 0.9rem;
    color: var(--dark-grey);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section-block {
    margin-bottom: 40px;
}

.policy-section-block h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
}

.policy-section-block p {
    margin-bottom: 15px;
    text-align: justify;
}

.policy-list {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.policy-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.policy-back-button {
    text-align: center;
    margin-top: 50px;
}

.diamond-header::before,
.circle-header::before,
.triangle-header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.05;
}

.diamond-header::before {
    background-color: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.circle-header::before {
    background-color: var(--primary-color);
    clip-path: circle(50% at 50% 50%);
}

.triangle-header::before {
    background-color: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.hexagon-content,
.spiral-content,
.puzzle-content {
    position: relative;
}

.hexagon-content::before,
.spiral-content::before,
.puzzle-content::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.03;
}

.hexagon-content::before {
    background: repeating-conic-gradient(var(--primary-color) 0% 30%, transparent 30% 100%);
    background-size: 50px 50px;
}

.spiral-content::before {
    background: 
        radial-gradient(circle at 100% 50%, transparent 20%, var(--primary-color) 21%, var(--primary-color) 34%, transparent 35%, transparent),
        radial-gradient(circle at 0% 50%, transparent 20%, var(--primary-color) 21%, var(--primary-color) 34%, transparent 35%, transparent);
    background-size: 60px 120px;
}

.puzzle-content::before {
    background-image: 
        linear-gradient(var(--primary-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary-color) 1px, transparent 1px);
    background-size: 20px 20px;
}

.rhombus-block,
.triangle-block,
.wave-block,
.circle-block,
.star-block,
.zigzag-block {
    position: relative;
    padding: 30px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    box-shadow: var(--box-shadow);
}

.rhombus-block::before,
.triangle-block::before,
.wave-block::before,
.circle-block::before,
.star-block::before,
.zigzag-block::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.05;
}

.rhombus-block::before {
    background-color: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.triangle-block::before {
    background-color: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.wave-block::before {
    background-color: var(--primary-color);
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 80%, 
        80% 80%, 
        80% 70%, 
        70% 70%, 
        70% 80%, 
        60% 80%, 
        60% 70%, 
        50% 70%, 
        50% 80%, 
        40% 80%, 
        40% 70%, 
        30% 70%, 
        30% 80%, 
        20% 80%, 
        20% 70%, 
        10% 70%, 
        10% 80%, 
        0% 80%
    );
}

.circle-block::before {
    background-color: var(--primary-color);
    clip-path: circle(50% at 50% 50%);
}

.star-block::before {
    background-color: var(--primary-color);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.zigzag-block::before {
    background-color: var(--primary-color);
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 90%, 
        90% 90%, 
        90% 80%, 
        80% 80%, 
        80% 90%, 
        70% 90%, 
        70% 80%, 
        60% 80%, 
        60% 90%, 
        50% 90%, 
        50% 80%, 
        40% 80%, 
        40% 90%, 
        30% 90%, 
        30% 80%, 
        20% 80%, 
        20% 90%, 
        10% 90%, 
        10% 80%, 
        0% 80%
    );
}

.prism-block,
.mosaic-block,
.cubism-block,
.origami-block,
.kaleidoscope-block,
.fractal-block,
.labyrinth-block,
.quilt-block {
    position: relative;
    padding: 30px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    box-shadow: var(--box-shadow);
}

.prism-block::before,
.mosaic-block::before,
.cubism-block::before,
.origami-block::before,
.kaleidoscope-block::before,
.fractal-block::before,
.labyrinth-block::before,
.quilt-block::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.05;
}

.prism-block::before {
    background: linear-gradient(135deg, var(--primary-color) 25%, transparent 25%) -50px 0,
                linear-gradient(225deg, var(--primary-color) 25%, transparent 25%) -50px 0,
                linear-gradient(315deg, var(--primary-color) 25%, transparent 25%),
                linear-gradient(45deg, var(--primary-color) 25%, transparent 25%);
    background-size: 100px 100px;
}

.mosaic-block::before {
    background: 
        radial-gradient(circle, var(--primary-color) 10%, transparent 10%),
        radial-gradient(circle, var(--primary-color) 10%, transparent 10%);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
}

.cubism-block::before {
    background: 
        linear-gradient(45deg, var(--primary-color) 25%, transparent 25%, transparent 75%, var(--primary-color) 75%, var(--primary-color)),
        linear-gradient(45deg, var(--primary-color) 25%, transparent 25%, transparent 75%, var(--primary-color) 75%, var(--primary-color));
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

.origami-block::before {
    background: 
        linear-gradient(135deg, var(--primary-color) 25%, transparent 25%) -50px 0,
        linear-gradient(225deg, var(--primary-color) 25%, transparent 25%) -50px 0,
        linear-gradient(315deg, var(--primary-color) 25%, transparent 25%),
        linear-gradient(45deg, var(--primary-color) 25%, transparent 25%);
    background-size: 100px 100px;
}

.kaleidoscope-block::before {
    background: 
        repeating-radial-gradient(var(--primary-color), var(--primary-color) 5px, transparent 5px, transparent 20px);
}

.fractal-block::before {
    background: 
        linear-gradient(45deg, var(--primary-color) 25%, transparent 25%, transparent 75%, var(--primary-color) 75%, var(--primary-color)),
        linear-gradient(45deg, var(--primary-color) 25%, transparent 25%, transparent 75%, var(--primary-color) 75%, var(--primary-color));
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

.labyrinth-block::before {
    background: 
        linear-gradient(0deg, var(--primary-color) 25%, transparent 25%, transparent 75%, var(--primary-color) 75%, var(--primary-color)),
        linear-gradient(90deg, var(--primary-color) 25%, transparent 25%, transparent 75%, var(--primary-color) 75%, var(--primary-color));
    background-size: 60px 60px;
}

.quilt-block::before {
    background: 
        radial-gradient(var(--primary-color) 15%, transparent 16%) 0 0,
        radial-gradient(var(--primary-color) 15%, transparent 16%) 8px 8px,
        radial-gradient(rgba(255, 255, 255, .1) 15%, transparent 20%) 0 1px,
        radial-gradient(rgba(255, 255, 255, .1) 15%, transparent 20%) 8px 9px;
    background-size: 16px 16px;
}

.gradient-block,
.hex-pattern-block,
.diamond-pattern-block,
.wave-pattern-block {
    position: relative;
    padding: 30px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    box-shadow: var(--box-shadow);
}

.gradient-block::before,
.hex-pattern-block::before,
.diamond-pattern-block::before,
.wave-pattern-block::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.05;
}

.gradient-block::before {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hex-pattern-block::before {
    background: 
        radial-gradient(var(--primary-color) 15%, transparent 16%) 0 0,
        radial-gradient(var(--primary-color) 15%, transparent 16%) 8px 8px;
    background-size: 16px 16px;
}

.diamond-pattern-block::before {
    background: 
        linear-gradient(45deg, var(--primary-color) 25%, transparent 25%, transparent 75%, var(--primary-color) 75%, var(--primary-color));
    background-size: 16px 16px;
}

.wave-pattern-block::before {
    background: 
        linear-gradient(45deg, var(--primary-color) 25%, transparent 25%, transparent 75%, var(--primary-color) 75%, var(--primary-color)),
        linear-gradient(-45deg, var(--primary-color) 25%, transparent 25%, transparent 75%, var(--primary-color) 75%, var(--primary-color));
    background-size: 30px 30px;
}

.cookies-type {
    margin-bottom: 25px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cookies-type h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.policy-intro-block {
    margin-bottom: 30px;
    font-size: 1.1rem;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
}

@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hexagon {
        width: 180px;
        height: 207.85px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .header-container {
        padding: 0 20px;
    }
    
    .main-nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-container {
        flex-direction: column;
    }
    
    .hero-content,
    .hero-image {
        flex: none;
        width: 100%;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .hexagon-wrapper {
        justify-content: center;
    }
    
    .hexagon {
        width: 150px;
        height: 173.2px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo,
    .footer-navigation,
    .footer-policies,
    .footer-contact {
        flex: none;
        width: 100%;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-section-block h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about-text p {
        text-align: left;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .policy-header h1 {
        font-size: 1.8rem;
    }
    
    .policy-section-block {
        padding: 15px;
    }
    
    .policy-section-block h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 375px) {
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hexagon {
        width: 120px;
        height: 138.56px;
    }
    
    .button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .policy-header h1 {
        font-size: 1.5rem;
    }
}