/* Prime Care Wellness Ltd. - Global Styles */
/* Brand Colors: Jade Green #00A679, Soft Beige #F4EDE1, Pale Grey #D9D9D9 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F4EDE1;
}

header {
    background-color: #00A679;
    color: white;
    padding: 2rem 0;
    border-bottom: 3px solid #008060;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.site-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.site-tagline {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 300;
}

nav {
    background-color: #D9D9D9;
    padding: 0;
    border-bottom: 2px solid #00A679;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #00A679;
    color: white;
}

main {
    background-color: white;
    min-height: 60vh;
    padding: 3rem 0;
}

h1 {
    color: #00A679;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #00A679;
    padding-bottom: 0.5rem;
}

h2 {
    color: #00A679;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h3 {
    color: #008060;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

ul, ol {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
}

li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background-color: #F4EDE1;
    padding: 1.5rem;
    border-left: 4px solid #00A679;
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

form {
    max-width: 600px;
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #D9D9D9;
    background-color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #00A679;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

button,
input[type="submit"] {
    background-color: #00A679;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover,
input[type="submit"]:hover {
    background-color: #008060;
}

footer {
    background-color: #00A679;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 3px solid #008060;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.footer-section a {
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    margin-left: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

.service-block {
    background-color: #F4EDE1;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #00A679;
}

.highlight-box {
    background-color: #F4EDE1;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 2px solid #00A679;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #D9D9D9;
}

th {
    background-color: #00A679;
    color: white;
    font-weight: 600;
}

tr:hover {
    background-color: #F4EDE1;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }
    
    nav ul li a {
        border-bottom: 1px solid #bbb;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}
