/* Base Styles */
:root {
    --primary: #345b63;
    --secondary: #d4b483;
    --accent: #e07a5f;
    --light: #f5f1eb;
    --dark: #152733;
    --text: #152733;
    --text-light: #5c7a8a;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 500;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

ul {
    list-style: none;
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

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

.btn.primary:hover {
    background-color: var(--dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

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

.btn.secondary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn.mini {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.highlight {
    color: var(--secondary);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.logo svg {
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 1.5rem;
}

.nav-menu li a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.cta-button a {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
}

.cta-button a:hover {
    background-color: var(--dark);
    color: white;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.hamburger {
    width: 30px;
    height: 3px;
    background-color: var(--primary);
    position: relative;
    transition: var(--transition);
}

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

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

.hamburger::after {
    bottom: -8px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    max-width: 600px;
    z-index: 10;
    padding-left: 5%;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background-color: rgba(52, 91, 99, 0.1);
    top: 20%;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background-color: rgba(212, 180, 131, 0.15);
    top: 50%;
    right: 10%;
}

.circle-3 {
    width: 200px;
    height: 200px;
    background-color: rgba(224, 122, 95, 0.1);
    top: 30%;
    right: 30%;
}

/* Intro Blocks */
.intro-blocks {
    padding: 6rem 0;
    background-color: white;
}

.blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.intro-block {
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--light);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.intro-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.block-icon {
    margin-bottom: 1.5rem;
}

/* Method Section */
.method-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.diagonal-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light) 0%, white 100%);
    transform: skewY(-5deg);
    transform-origin: top left;
    z-index: -1;
}

.method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.method-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
}

.image-container {
    height: 100%;
    background-image: url('https://source.unsplash.com/random/600x800/?pilates');
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.image-container:hover {
    transform: scale(1.05);
}

.method-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: white;
}

.accordion-header {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: white;
}

.accordion-toggle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary);
    transition: var(--transition);
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 1.5rem 1.2rem;
    max-height: 200px;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(45deg);
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background-color: white;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-wheel {
    flex: 1;
    min-width: 300px;
    height: 400px;
    position: relative;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.wheel-item {
    position: absolute;
    width: 120px;
    height: 120px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    cursor: pointer;
}
.wheel-item h3{
    font-size: 14px;
}
.wheel-item[data-position="1"] {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.wheel-item[data-position="2"] {
    top: 25%;
    right: 0;
}

.wheel-item[data-position="3"] {
    bottom: 0;
    right: 25%;
}

.wheel-item[data-position="4"] {
    bottom: 0;
    left: 25%;
}

.wheel-item[data-position="5"] {
    top: 25%;
    left: 0;
}

.wheel-icon {
    margin-bottom: 10px;
}

.wheel-item:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-description {
    flex: 1;
    min-width: 300px;
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.benefit-content {
    display: none;
}

.benefit-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    position: relative;
}

.wave-bg {
    position: relative;
    background: linear-gradient(180deg, white 0%, var(--light) 100%);
}

.wave-bg::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,128L48,144C96,160,192,192,288,192C384,192,480,160,576,149.3C672,139,768,149,864,149.3C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,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'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border: 2px solid var(--secondary);
}

.featured-tag {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: var(--secondary);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.card-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
}

.card-icon {
    margin-bottom: 1rem;
}

.card-content {
    padding: 2rem;
}

.service-features {
    margin: 1.5rem 0;
}

.service-features li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

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

.price {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-right: 10px;
}

.period {
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-btn {
    width: 100%;
    background-color: var(--primary);
    color: white;
}

.service-btn:hover {
    background-color: var(--dark);
    color: white;
}

/* Schedule Section */
.schedule-section {
    padding: 6rem 0;
    background-color: white;
}

.schedule-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.schedule-nav {
    display: flex;
    background-color: var(--primary);
}

.schedule-tab {
    flex: 1;
    padding: 1rem;
    text-align: center;
    background: none;
    border: none;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.schedule-tab.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 3px solid var(--secondary);
}

.schedule-tab:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.schedule-content {
    background-color: var(--light);
}

.schedule-day {
    display: none;
    padding: 2rem;
}

.schedule-day.active {
    display: block;
}

.schedule-class {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.class-time {
    width: 120px;
    text-align: center;
    font-weight: 600;
    color: var(--primary);
}

.class-info {
    flex: 1;
    padding: 0 1rem;
}

.class-info h4 {
    margin-bottom: 0.5rem;
}

.class-level, .class-instructor {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-right: 1rem;
    display: inline-block;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: var(--light);
}

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

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-content {
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: rgba(52, 91, 99, 0.1);
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    background-image: url('https://source.unsplash.com/random/100x100/?person');
    background-size: cover;
    background-position: center;
}

.author-info h4 {
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.testimonial-nav {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(52, 91, 99, 0.2);
    margin: 0 5px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.testimonial-nav.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* Technique Carousel */
.technique-carousel {
    padding: 6rem 0;
    background-color: white;
}

.technique-container {
    position: relative;
}

.technique-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
}

.technique-prev, .technique-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    box-shadow: var(--shadow);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.technique-prev:hover, .technique-next:hover {
    background-color: var(--primary);
}

.technique-prev:hover svg path, .technique-next:hover svg path {
    stroke: white;
}

.technique-slider {
    overflow: hidden;
}

.technique-slide {
    display: none;
}

.technique-slide.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    animation: fadeIn 0.5s ease;
}

.technique-image {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    background-image: url('https://source.unsplash.com/random/600x800/?pilates-technique');
    background-size: cover;
    background-position: center;
}

.technique-info {
    padding: 2rem;
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.technique-benefits {
    margin-top: 1.5rem;
}

.technique-benefits li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 25px;
}

.technique-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Booking Section */
.booking-section {
    padding: 6rem 0;
    background-color: var(--light);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.booking-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-icon {
    margin-right: 1rem;
}

.booking-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(52, 91, 99, 0.2);
}

.form-submit {
    text-align: center;
}

.form-btn {
    width: 100%;
    background-color: var(--primary);
    color: white;
}

.form-btn:hover {
    background-color: var(--dark);
}

/* Newsletter Section */
.newsletter-section {
    padding: 3rem 0;
    background-color: var(--primary);
    color: white;
}

.newsletter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.newsletter-content h3 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
}

.newsletter-input {
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-input input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 1rem;
}

.newsletter-input input:focus {
    outline: none;
}

.newsletter-btn {
    padding: 0 25px;
    border-radius: 0;
    background-color: var(--secondary);
    color: var(--dark);
}

.newsletter-btn:hover {
    background-color: var(--dark);
    color: white;
}

/* Footer */
.main-footer {
    padding: 5rem 0 2rem;
    background-color: var(--dark);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.footer-logo svg {
    margin-right: 10px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-column h4 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
}

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info li svg {
    margin-right: 10px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.policy-links {
    display: flex;
    gap: 1.5rem;
}

.policy-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.policy-links a:hover {
    color: var(--secondary);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top a svg path {
    stroke: white;
}

.back-to-top a:hover {
    background-color: var(--dark);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .method-grid,
    .booking-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .technique-slide.active {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        width: 80%;
        height: 100vh;
        background-color: white;
        padding: 80px 20px;
        transition: 0.5s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .menu-toggle.active .hamburger {
        background-color: transparent;
    }
    
    .menu-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .menu-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
    
    .hero {
        height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-content {
        padding: 0;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-shape {
        display: none;
    }
    
    .technique-nav {
        position: relative;
        transform: none;
        margin-bottom: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-links {
        justify-content: center;
        flex-direction: column;
    }
    html{
        overflow-x: hidden;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .blocks-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-input {
        flex-direction: column;
    }
    
    .newsletter-btn {
        border-radius: 30px;
        margin-top: 1rem;
    }
}