/* Global Styles */
:root {
    /* Основна кольорова палітра */
    --color-primary: #89b8c8;
    --color-secondary: #a7c9b7;
    --color-accent: #e3b098;
    --color-light: #f9eee2;
    --color-dark: #5d6e60;
    --color-text: #4a4a4a;
    --color-bg: #ffffff;
    --color-bg-alt: #f7f7f7;
    
    /* Шрифти */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-text: 'Inter', sans-serif;
    
    /* Тіні */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
    
    /* Заокруглення */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-round: 50%;
    
    /* Переходи */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-text);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-bg);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    font-weight: 500;
}

h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-secondary);
    margin: 0.8rem auto 0;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--color-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 80px 0;
}

ul {
    list-style-type: none;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-plan,
.btn-submit,
.btn-newsletter,
.btn-nav {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--color-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.btn-secondary:hover {
    background-color: var(--color-dark);
    color: white;
    transform: translateY(-3px);
}

.btn-nav {
    background-color: var(--color-light);
    color: var(--color-dark);
    padding: 8px 16px;
    border-radius: var(--radius-md);
}

.btn-nav:hover {
    background-color: var(--color-dark);
    color: white;
}

.btn-plan {
    background-color: var(--color-secondary);
    color: white;
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-md);
    margin-top: 20px;
}

.btn-plan:hover {
    background-color: var(--color-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-submit {
    background-color: var(--color-primary);
    color: white;
    width: 100%;
    padding: 14px;
}

.btn-submit:hover {
    background-color: var(--color-dark);
    transform: translateY(-3px);
}

.btn-newsletter {
    background-color: var(--color-accent);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-md);
}

.btn-newsletter:hover {
    background-color: var(--color-dark);
    transform: translateY(-3px);
}

/* Header & Navigation */
header {
    position: relative;
    background-color: var(--color-bg);
}

.main-nav {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-nav.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu li a {
    color: var(--color-dark);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-normal);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-dark);
    margin-bottom: 5px;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.1) 100%);
}

.hero-content {
    position: relative;
    max-width: 600px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(5px);
    box-shadow: var(--shadow-md);
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.hero-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* About Course Section */
.about-course {
    background-color: var(--color-bg-alt);
    padding: 100px 0;
}

.course-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.course-info {
    flex: 1;
    min-width: 300px;
}

.course-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transform: rotate(2deg);
    transition: var(--transition-normal);
}

.course-image:hover {
    transform: rotate(0) scale(1.02);
}

.course-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
}

.feature {
    flex: 1;
    min-width: 200px;
    background-color: white;
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    border-radius: var(--radius-round);
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Instructors Section */
.instructors {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.instructors::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/inst.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.steps-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background-color: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: var(--transition-normal);
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--color-accent);
    color: white;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.2rem;
}

.step-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: var(--radius-round);
    overflow: hidden;
    border: 5px solid var(--color-light);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Benefits Section */
.benefits {
    background-color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.benefits::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--color-secondary);
    opacity: 0.1;
    border-radius: var(--radius-round);
    z-index: 0;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    background-color: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: var(--radius-round);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-dark);
}

/* Testimonials Section */
.testimonials {
    background-color: white;
    position: relative;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/test.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.testimonials-slider {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonial {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    background-color: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.testimonial-image {
    flex: 0 0 150px;
    height: 150px;
    border-radius: var(--radius-round);
    overflow: hidden;
    border: 5px solid var(--color-light);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    min-width: 300px;
}

.stars {
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.testimonial-content h4 {
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--color-dark);
}

.testimonial-location {
    color: var(--color-primary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-dots span {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-round);
    background-color: var(--color-light);
    cursor: pointer;
    transition: var(--transition-normal);
}

.testimonial-dots span.active {
    background-color: var(--color-primary);
    width: 30px;
    border-radius: 10px;
}

/* Pricing Section */
.pricing {
    background-color: var(--color-bg-alt);
    position: relative;
}

.special-offer {
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.special-offer::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-round);
}

.special-offer::after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-round);
}

.offer-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: white;
    padding: 8px 15px;
    border-radius: var(--radius-md);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.special-offer h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.countdown {
    margin-top: 20px;
}

.countdown-text {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.timer-item {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: var(--radius-md);
    min-width: 70px;
}

.timer-item span {
    display: block;
    text-align: center;
}

.timer-item .label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.pricing-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pricing-plan {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px 30px;
    position: relative;
    transition: var(--transition-normal);
}

.pricing-plan:hover {
    transform: translateY(-10px);
}

.pricing-plan.featured {
    border: 2px solid var(--color-primary);
    transform: scale(1.05);
}

.pricing-plan.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-primary);
    color: white;
    padding: 8px 15px;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.plan-header {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-family: var(--font-primary);
}

.price .original {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-right: 10px;
}

.price .current {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-dark);
}

.price .period {
    font-size: 1rem;
    color: #999;
}

.plan-features ul {
    margin-bottom: 20px;
}

.plan-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

/* FAQ Section */
.faq {
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    background-color: var(--color-light);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 500;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: var(--transition-normal);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    background-color: white;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

/* Contact Section */
.contact {
    background-color: var(--color-bg-alt);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    text-align: left;
}

.contact-info h2::after {
    margin-left: 0;
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--color-primary);
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 30px;
    box-shadow: var(--shadow-sm);
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-dark);
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-family: var(--font-text);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(137, 184, 200, 0.2);
}

.form-check {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.form-check input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-check label {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--color-accent);
    color: white;
    padding: 60px 0;
}

.newsletter-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.newsletter-content {
    flex: 1;
    min-width: 300px;
}

.newsletter-content h2 {
    color: white;
    text-align: left;
    margin-bottom: 10px;
}

.newsletter-content h2::after {
    display: none;
}

.newsletter-content p {
    margin-bottom: 0;
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
}

.newsletter-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.newsletter-form .form-group {
    flex: 1;
    min-width: 150px;
    margin-bottom: 0;
}

.newsletter-form input {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 15px;
    border-radius: var(--radius-md);
    width: 100%;
}

.newsletter-form input:focus {
    outline: none;
    background-color: white;
}

/* Footer */
footer {
    background-color: var(--color-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h4 {
    color: var(--color-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-normal);
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: var(--color-light);
}

.footer-bottom a:hover {
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: white;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    z-index: 99;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-dark);
    color: white;
    transform: translateY(-5px);
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        min-height: 500px;
        background-position: right center;
    }
    
    .hero-content {
        max-width: 500px;
    }
    
    .step {
        min-width: 45%;
    }
    
    .pricing-plan {
        min-width: 45%;
    }
    
    .pricing-plan.featured {
        transform: scale(1);
    }
    
    .pricing-plan.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 30px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
        z-index: 99;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 10px 0;
        width: 100%;
    }
    
    .nav-menu li a {
        display: block;
        padding: 10px 0;
    }
    
    .step {
        min-width: 100%;
    }
    
    .pricing-plan {
        min-width: 100%;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-content h2 {
        text-align: center;
    }
    
    .newsletter-form form {
        flex-direction: column;
    }
    
    .newsletter-form .form-group {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .feature {
        min-width: 100%;
    }
    
    .testimonial {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .testimonial-image {
        margin: 0 auto;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .special-offer {
        padding: 25px;
    }
    
    .footer-logo, .footer-column {
        min-width: 100%;
        text-align: center;
    }
    
    .footer-logo img {
        margin: 0 auto 20px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
}