/* --------------- FONTS --------------- */
/* #region */
.title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(50px, 9vw, 70px);
    margin-right: 5px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px var(--shadow-light);
    letter-spacing: -0.02em;
}

.heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 7vw, 48px);
    font-weight: 500;
    text-align: center;
    margin: 0 0 1rem 0;
    padding: 0;
    color: var(--primary-dark);
    position: relative;
    letter-spacing: -0.01em;
}

.heading::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.subheading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 400;
    margin: 0;
    padding: 0;
    letter-spacing: -0.01em;
}

.body {
    font-family: 'Source Sans Pro', system-ui, -apple-system, sans-serif;
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}
/* #endregion */

html {
    box-sizing: border-box;
    /* Might replace with JS later */
    scroll-behavior: smooth;
}
 
*, *:before, *:after {
    box-sizing: inherit;
}

:root {
    --primary-color: #008080;
    --primary-light: #00a0a0;
    --primary-dark: #006666;
    --accent-color: #4a90a4;
    --text-color: #ffffff;
    --text-dark: #2d3436;
    --background-color: #ffffff;
    --background-light: #f8f9fa;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --shadow-light: rgba(0, 0, 0, 0.05);
    --transition-speed: 0.3s;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Source Sans Pro', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    padding-top: 70px; /* Add space for fixed navigation */
}

/* Mobile Navigation Styles */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    height: 70px;
    box-sizing: border-box;
}

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

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px var(--shadow-color);
}

.nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-family: 'Source Sans Pro', system-ui, -apple-system, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link:focus {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
    border-left: 4px solid var(--text-color);
}

.nav-link:last-child {
    border-bottom: none;
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1023px) {
    .nav-header {
        padding: 1rem 2rem;
    }
    
    .nav-title {
        font-size: 1.4rem;
    }
    
    .nav-link {
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
    }
}

/* Hide mobile nav on larger screens */
@media (min-width: 1024px) {
    .mobile-nav {
        display: none;
    }
    
    body {
        padding-top: 0;
    }
    
    .hero {
        min-height: 90vh !important;
    }
}

.hero{
    width: 100vw;
    max-width: initial;
    margin: 0;
    padding: 3rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--primary-dark);
    border-bottom: 3px solid var(--primary-color);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content1{
    width: 100vw;
    max-width: initial;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
}

.content2{
    width: 100vw;
    max-width: initial;
    margin: 0;
    display: flex;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--text-dark);
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 4rem 0;
    border-top: 3px solid var(--primary-color);
}

.form {
    flex-direction: column;
    display: flex;
    gap: 1.5rem;
    max-width: 600px;
    width: 90%;
    margin: 2rem auto;
}

.form input, textarea {
    border: 2px solid transparent;
    background-color: #f7f7f7;
    padding: 1rem;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.form input:hover, .form textarea:hover {
    background-color: #f0f0f0;
}

.form input:focus, .form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #ffffff;
    box-shadow: 0 6px 12px var(--shadow-color);
}

input[type=text]:focus, input[type=email]:focus, textarea:focus {
    outline: 2px solid teal;
}

/* .content2 .text {
    font-size: 35px;
} */

.container {
    width: 90%;
    max-width: 1296px;
    margin: 2rem auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    
    .reversed {
        flex-direction: column;
    }
    
    /* Larger pony images on tablets and mobile */
    .content__image {
        width: 80%;
        max-width: 400px;
    }
    
    /* Fix content sizing and centering on mobile */
    .content {
        width: 100%;
        padding: 0 1rem;
        font-size: 1.1rem;
    }
    
    .content p, .content h1 {
        padding: 0 10px;
        text-align: center;
        margin: 1rem 0;
    }
}

.reversed {
    flex-direction: row-reverse;
}

.section {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px var(--shadow-color);
    transition: all var(--transition-speed) ease;
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.section:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--shadow-color);
}

.form button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 15px var(--shadow-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-color);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.form button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px var(--shadow-color);
}

.form textarea{
    height:200px;
}

/* Confirmation message styles */
.confirmation-message {
    max-width: 600px;
    width: 90%;
    margin: 1rem auto;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-family: 'Source Sans Pro', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 4px 6px var(--shadow-color);
    opacity: 0;
    animation: fadeInUp 0.4s ease forwards;
}

.confirmation-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.confirmation-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    margin-left: 5px;
}

/* .hero__container {
    display: flex;
    justify-content: space-between;
} */

.hero__content {
    max-width: 643px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

.hero__subtitle {
    font-family: 'Source Sans Pro', system-ui, -apple-system, sans-serif;
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 400;
    color: var(--primary-dark);
    margin: 1rem 0 2rem 0;
    line-height: 1.5;
    opacity: 0.8;
}

.hero__features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    box-shadow: 0 2px 8px var(--shadow-color);
    backdrop-filter: blur(10px);
}

.feature__icon {
    font-size: 1.2em;
}

.feature__text {
    font-family: 'Source Sans Pro', system-ui, -apple-system, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .hero {
        min-height: calc(100vh - 70px);
        padding: 2rem 0;
    }
    
    .hero__features {
        justify-content: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .feature {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .feature__text {
        font-size: 0.8rem;
    }
    
    .hero__content {
        text-align: center;
        align-items: center;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero__subtitle {
        margin: 1rem 0 1.5rem 0;
        text-align: center;
    }
}

.hero__image {
    max-width: 643px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__text {
    color: teal;
}

.content {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /*text-align: right;*/
    flex-direction: column;
    
    font-size:1.2rem;
}

.content p,h1 {
    padding: 0 25px 0 25px;
    text-align: center;
}


.content__image {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;

}

.content__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 4px 15px var(--shadow-color);
}


.text {
    color:teal;
}

/* Content section link styling */
.content .text a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all var(--transition-speed) ease;
    padding: 2px 4px;
    border-radius: 4px;
}

.content .text a:hover {
    color: var(--text-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px var(--shadow-color);
}

.content .text a:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px var(--shadow-color);
}

.footer {
    background-color: var(--primary-color);
    padding: 2rem 0 2rem 0;
}

.footer__content {
    max-width: 1296px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer__main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__section {
    color: var(--text-color);
}

.footer__title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.footer__description {
    font-family: 'Source Sans Pro', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.footer__heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__list li {
    font-family: 'Source Sans Pro', system-ui, -apple-system, sans-serif;
    padding: 0.25rem 0;
    opacity: 0.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__list li:last-child {
    border-bottom: none;
}

.contact__info p {
    font-family: 'Source Sans Pro', system-ui, -apple-system, sans-serif;
    margin: 0.5rem 0;
    opacity: 0.9;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact__item a {
    font-family: 'Source Sans Pro', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity var(--transition-speed) ease;
}

.contact__item a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .footer__main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

.social-links {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    transition: transform var(--transition-speed) ease;
    font-family: 'Source Sans Pro', system-ui, -apple-system, sans-serif;
    opacity: 0.9;
}

.social-link:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.social-icon {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
footer a{
    text-decoration: none;
    color:inherit;
}

#arrow {
    width: 4rem;
    position: absolute;
    top: 1vh;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    fill: #ffffff;
}
.insta a{
    display: flex;
    flex-direction:row;
    flex-wrap:wrap;
}
.insta img {
    max-width: 30px;
    height: 30px;
    margin:10px 4px;
}

/* --------------- SLIDESHOW STYLES --------------- */
.slideshow-container {
    position: relative;
    max-width: 1296px;
    margin: 2rem auto;
    padding: 50px;
    overflow: hidden;
    /* border-radius: 20px;
    box-shadow: 0 8px 25px var(--shadow-color); */
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}

.slide {
    display: none;
    width: 100%;
    position: relative;
    animation: fadeIn 2s ease-in-out;
    font-size: 1.2rem;
}

.slide.active {
    display: block;
}

.slide .container {
    margin: 0;
    width: 100%;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Navigation buttons */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 128, 128, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
    z-index: 10;
    box-shadow: 0 4px 15px var(--shadow-color);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px var(--shadow-color);
}

.prev-btn {
    left: 1rem;
}

.next-btn {
    right: 1rem;
}

/* Slide indicators */
.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-bottom: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 128, 128, 0.3);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
}

.indicator:hover {
    background: rgba(0, 128, 128, 0.6);
    transform: scale(1.1);
}

.indicator.active {
    background: var(--primary-color);
    border-color: var(--primary-light);
    transform: scale(1.2);
    box-shadow: 0 2px 8px var(--shadow-color);
}

/* Responsive design for slideshow */
@media (max-width: 768px) {
    .slideshow-container {
        margin: 1rem;
        border-radius: 15px;
    }
    
    .slide-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .prev-btn {
        left: 0.5rem;
    }
    
    .next-btn {
        right: 0.5rem;
    }
    
    .slide .container {
        padding: 1.5rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Animation for slide transitions */
@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide.active .content {
    animation: slideIn 1.5s ease-out;
}

/* --------------- TESTIMONIALS SLIDESHOW STYLES --------------- */
.testimonials-slideshow {
    position: relative;
    max-width: 1296px;
    margin: 2rem auto;
    padding: 50px;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    width: 100%;
    position: relative;
    animation: fadeIn 2s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide .container {
    margin: 0;
    width: 100%;
    justify-content: center;
}

.testimonial-content {
    width: 100%;
    text-align: center;
    padding: 2rem;
    color: teal;
}

.testimonials-title {
    margin-bottom: 2rem;
}

.testimonial-header {
    margin-bottom: 1.5rem;
}

.testimonial-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    color: teal;
    margin: 0 0 0.5rem 0;
}

.testimonial-rating {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.testimonial-preview,
.testimonial-full p {
    font-family: 'Source Sans Pro', system-ui, -apple-system, sans-serif;
    font-size: clamp(16px, 3vw, 18px);
    line-height: 1.6;
    color: teal;
    margin: 0 0 1rem 0;
    font-style: italic;
}

.testimonial-preview {
    position: relative;
}

.expand-btn {
    background: linear-gradient(135deg, var(--text-color) 0%, #f0f0f0 100%);
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--text-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-family: 'Source Sans Pro', system-ui, -apple-system, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expand-btn:hover {
    background: var(--text-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.expand-btn:active {
    transform: translateY(0);
}

/* Animation for testimonial content expansion */
.testimonial-full {
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-full.collapsing {
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        max-height: 600px;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        max-height: 600px;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        max-height: 0;
        transform: translateY(-5px);
    }
}

/* Responsive design for testimonials */
@media (max-width: 768px) {
    .testimonials-slideshow {
        margin: 1rem auto;
        padding: 20px;
    }
    
    .testimonial-content {
        padding: 1rem;
        text-align: center;
    }
    
    .testimonials-title {
        text-align: center;
        margin: 0 auto 2rem auto;
        padding: 0;
    }
    
    .testimonial-text {
        text-align: center;
    }
    
    .expand-btn {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
}

/* Additional mobile fixes for very small screens */
@media (max-width: 480px) {
    .testimonials-slideshow {
        margin: 0.5rem auto;
        padding: 10px;
    }
    
    .testimonial-content {
        padding: 0.5rem;
    }
    
    .testimonials-title {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100%;
        display: block;
    }
}

@media only screen and (max-width: 730px) {
    .container {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
    }

    .section {
        flex-direction: column;
        width: 95%;
    }

    .content__image {
        width: 85%;
    }

    .hero__content {
        justify-content: flex-start;
        text-align: center;
        padding: 0 0.5rem;
    }

    .hero__image {
        max-width: 280px;
        margin-top: 1rem;
    }

    .hero__img{
        margin-left: 0px;
        margin-top: 0px;
        width: 100%;
        max-width: 280px;
    }
    
    .hero__features {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        width: 100%;
    }
    
    .feature {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .content {
        width: 100%;
        text-align: center;
        word-wrap: break-word;
        padding: 0 0.5rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .content p, .content h1 {
        padding: 0 5px;
        margin: 0.8rem 0;
    }

    .footer__img {
        display: none;
    }

    footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    footer a{
        text-decoration: none;
        color:inherit;
    }

    .insta a{
        display: flex;
        flex-direction:row;
        flex-wrap:wrap;
    }
    .insta img {
        max-width: 30px;
        height: 30px;
        margin:10px 4px;
    }
    .title {
        margin-right: 0px;
        text-align: center;
    }

    .form {
        max-width: 1020px;
    }
}

/* Additional mobile optimizations for very small screens */
@media only screen and (max-width: 480px) {
    .hero {
        padding: 1.5rem 0;
    }
    
    .hero__content {
        padding: 0 1rem;
    }
    
    .hero__image {
        max-width: 220px;
    }
    
    .hero__img {
        max-width: 220px;
    }
    
    .hero__features {
        gap: 0.6rem;
    }
    
    .feature {
        padding: 0.4rem 0.8rem;
        max-width: 200px;
    }
    
    .feature__text {
        font-size: 0.75rem;
    }
    
    .feature__icon {
        font-size: 1em;
    }
    
    /* Make pony images larger on very small screens */
    .content__image {
        width: 90%;
    }
    
    /* Additional content fixes for very small screens */
    .content {
        font-size: 1rem;
        padding: 0 0.25rem;
    }
    
    .content p, .content h1 {
        padding: 0;
        margin: 0.5rem 0;
    }
}