/* Base styles */
body {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #03414d;
    background-color: #f5fafd;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #0077b6;
    color: white;
    padding: 20px 0;
}

header h1 {
    margin: 0;
    font-size: 2em;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #00b4d8, #48cae4);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.btn {
    background-color: #0077b6;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn:hover {
    background-color: #023e8a;
}

/* Services Section */
.services {
    padding: 60px 20px;
    background-color: #f0f8ff;
    text-align: center;
}

.services h2 {
    margin-bottom: 40px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 20px;
}


.service {
    background-color: white;
    border: 1px solid #d0ebf9;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service h3 {
    color: #0077b6;
}

/* About Section */
.about {
    padding: 60px 20px;
    background-color: #e0fbfc;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    background-color: #caf0f8;
    text-align: center;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.contact input, .contact textarea {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    border: 1px solid #90e0ef;
    border-radius: 5px;
}

.contact button {
    background-color: #00b4d8;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.contact button:hover {
    background-color: #0077b6;
}

/* Footer */
footer {
    background-color: #0077b6;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-list {
        flex-direction: column;
        align-items: center;
    }
}

/* Pricing List inside services */
.pricing {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.pricing li {
    margin-bottom: 5px;
    font-weight: bold;
}

/* Badge for Most Popular */
.badge {
    background-color: #00b4d8;
    color: white;
    padding: 2px 8px;
    font-size: 0.7em;
    border-radius: 5px;
    margin-left: 8px;
    vertical-align: middle;
}

.massage-therapy {
    padding: 60px 20px;
    background-color: #f0f8ff;
    text-align: center;
}

.massage-therapy h2 {
    margin-bottom: 30px;
    color: #0077b6;
}

.massage-therapy p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 1.1em;
    line-height: 1.6;
}

.about-therapist {
    padding: 60px 20px;
    background-color: #e0fbfc;
    text-align: center;
}

.about-therapist h2 {
    margin-bottom: 30px;
    color: #0077b6;
}

.about-therapist p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 1.1em;
    line-height: 1.6;
}