* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Manrope, sans-serif;
}

body {
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 10%;
    background-color: white;
}

.logo {
    font-weight: bold;
    color: #2450DC;
    text-decoration: none;
    font-size: 1rem;
}

.cta-button-small {
    background-color: #2450DC;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: none;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button-small:hover {
    background-color: #1a3aad;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 18rem 1rem;
    background-image: url(../img/bgimghero.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero h1 {
    font-size: 2.2rem;
    color: #2450DC;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.3;
}

.hero p {
    color: #FF9B50;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background-color: #2450DC;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1a3aad;
}

/* Section styles */
section {
    padding: 3rem 10%;
}

section h2 {
    font-size: 1.8rem;
    color: #2450DC;
    margin-bottom: 2rem;
}

/* About section styles */
.about-section {
padding: 4rem 10%;
}

.about-container {
display: flex;
flex-wrap: wrap;
flex-direction: row-reverse;
align-items: center;
gap: 3rem;
}

.about-image {
flex: 1;
min-width: 300px;
border-radius: 8px;
overflow: hidden;
}

.about-image img {
width: 100%;
height: auto;
display: block;
}

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

.about-content h2 {
color: #2450DC;
margin-bottom: 1.5rem;
}

.about-content p {
margin-bottom: 1.5rem;
line-height: 1.7;
color: #FF9B50;
}

.about-paragraph {
line-height: 1.8;
font-size: 1.1rem;
color: #FF9B50;
margin-bottom: 1rem;
}



/* Goals section */
.goals-container {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 2rem;
}

.goal {
flex: 1;
min-width: 250px;
text-align: center;
}

.goal-icon {
width: 120px;
height: 120px;
margin: 0 auto 1.5rem;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}

.goal-icon img {
width: 75%;
height: 75%;
object-fit: cover;
transition: transform 0.3s ease;
}

.goal h3 {
color: #2450DC;
margin-bottom: 1rem;
}

.goal p {
color: #FF9B50;
font-size: 0.9rem;
}


/* Locations section */
.locations-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.location-item {
    margin-bottom: 0.5rem;
}

.location-header {
    background-color: #2450DC;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.arrow {
    font-size: 1.5rem;
}

.location-content {
    border: 1px solid #2450DC;
    padding: 1rem;
    display: none;
}

.location-content p {
    color: #FF9B50;
    margin-bottom: 1rem;
}

.find-store-btn {
    display: inline-block;
    background-color: #FF9B50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    border: none;
}

.find-store-btn:hover {
    background-color: #e88a45;
}

.location-content.active {
    display: block;
}

/* Newsletter popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2450DC;
}

.close-popup:hover {
    color: #1a3aad;
}

.popup-content h2 {
    color: #2450DC;
    margin-bottom: 1rem;
}

.popup-content p {
    margin-bottom: 1.5rem;
    color: #FF9B50;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input[type="email"] {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.subscribe-button {
    padding: 0.8rem 1.5rem;
    background-color: #2450DC;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.subscribe-button:hover {
    background-color: #1a3aad;
}

/* Newsletter section */
.newsletter-section {
    background-color: #f0f4ff;
    text-align: center;
    padding: 4rem 10%;
}

.newsletter-section h2 {
    color: #2450DC;
    margin-bottom: 1rem;
}

.newsletter-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #FF9B50;
}

.newsletter-container {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-container form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.newsletter-container input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.newsletter-container button {
    padding: 0.8rem 1.5rem;
    background-color: #2450DC;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.newsletter-container button:hover {
    background-color: #1a3aad;
}

.newsletter-disclaimer {
    font-size: 0.8rem;
    color: #666;
    margin-top: 1rem;
}

/* Footer styles */
footer {
    background-color: #f8f8f8;
    text-align: center;
    padding: 2rem;
    color: #1a3aad;
}

/* Responsive styles */
@media (max-width: 768px) {
    section {
        padding: 3rem 5%;
    }
    
    header {
        padding: 1rem 5%;
    }

    .hero {
    padding: 10rem 1rem;
    background-image: url(img/bgimgheromobile.jpg);
    background-position: center top; 
}
    
    .newsletter-section {
        padding: 4rem 5%;
    }
    .about-container {
    flex-direction: column-reverse;
}

.about-image {
    margin: 0 auto;
    max-width: 400px;
}
    .goals-container {
        flex-direction: column;
    }
    
    .goal {
        margin-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    nav ul {
        flex-direction: column;
        text-align: right;
    }
    
    nav ul li {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
}