* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero {
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    height: 100vh;
    position: relative;
}

.overlay {
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    color: white;
}

.brand {
    font-size: 24px;
    font-weight: bold;
}

.highlight {
    color: #00cfff;
}

.trust {
    font-size: 18px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    margin-top: 50px;
}

.hero-content h1 {
    color: white;
    font-size: 48px;
    line-height: 1.2;
    max-width: 500px;
}

.contact-box {
    background: #00cfff;
    padding: 30px;
    border-radius: 5px;
    width: 350px;
}

.contact-box h2 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.contact-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 3px;
}

.contact-box button {
    width: 100%;
    padding: 12px;
    background: #333;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
}

#formMsg {
    color: white;
    text-align: center;
    margin-top: 10px;
}

/* Care Section */
.care-section {
    padding: 80px 50px;
    text-align: center;
    background: white;
}

.care-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.care-section > p {
    color: #666;
    margin-bottom: 50px;
}

.care-types {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.care-types div {
    max-width: 300px;
}

.care-types img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.care-types h3 {
    color: #00cfff;
    margin-bottom: 15px;
}

/* About Section */
.about-section {
    display: flex;
    padding: 80px 50px;
    background: #f9f9f9;
    align-items: center;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 5px;
}

.about-content {
    flex: 1;
    padding-left: 50px;
}

.about-content h2 {
    color: #00cfff;
    margin-bottom: 20px;
}

.about-content ul {
    list-style-position: inside;
    margin-top: 20px;
}

/* About Bit Section */
.about-bit {
    display: flex;
    padding: 80px 50px;
    background: #00cfff;
    color: white;
    align-items: center;
}

.about-bit > div {
    flex: 1;
}

.about-bit img {
    width: 100%;
    max-width: 500px;
    border-radius: 5px;
}

/* Testimonial Section */
.testimonial {
    padding: 80px 50px;
    text-align: center;
    background: white;
}

.testimonial blockquote {
    font-size: 24px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
}

.testimonial span {
    display: block;
    color: #00cfff;
    margin-top: 20px;
    font-weight: bold;
    font-style: normal;
}

/* Footer */
.footer-cta {
    background: #00cfff;
    color: white;
    text-align: center;
    padding: 80px 50px;
}

.footer-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.footer-btn {
    display: inline-block;
    background: #333;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 3px;
    margin-top: 30px;
}

.footer-bottom {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        margin-bottom: 30px;
    }

    .care-types {
        flex-direction: column;
        align-items: center;
    }

    .about-section,
    .about-bit {
        flex-direction: column;
    }

    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .about-bit > div {
        margin-bottom: 30px;
    }
} 