/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #e0f7ff;
    color: #003d66;
    line-height: 1.6;
    padding: 20px;
    font-size: 2.15rem; /* ⬅️ Add or update this line */
}

/* Container */
.container {
    max-width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: #ffe4ec;   /* Light pink */
    padding: 30px 20px;
    text-align: center;
    color: #c94f7c;
    border-bottom: 2px solid #ffc4d6;
}

header h1 {
    font-size: 3rem;
}

.tagline {
    font-size: 2.2rem;
    font-weight: bold;
    color: #c94f7c;
    margin-top: 10px;
}

/* Section box */
section {
    background-color: #fef6f9;   /* Very light pink */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 192, 203, 0.3);
    padding: 30px;
    margin: 40px auto;
    max-width: 100%;
}

/* Section headings */
section h2 {
    color: #d36c8f;
    margin-bottom: 15px;
}

/* Lists in services and team */
.services ul,
.team ul {
    list-style-type: circle;
    margin-left: 20px;
}

.services li,
.team li {
    margin: 8px 0;
    font-size: 2.05rem;
}

/* Contact section links */
.contact a {
    color: #b44668;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    background-color: #ffe4ec;
    color: #a85774;
    padding: 15px;
    margin-top: 40px;
    border-top: 2px solid #ffc4d6;
}

/* Images */
.about-image {
    display: block;
    margin: 20px auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
