.top-contact-bar {
    background-color: #006D77;
    color: white;
    padding: 10px 0;
    font-size: 0.9em;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info a:hover {
    text-decoration: underline;
}

body {
    font-family: 'Inter', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.5;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a:hover {
    color: #006D77;
}

/* Hero */
.hero {
    text-align: center;
    padding: 60px 0;
    background-color: #f8fafa;
    border-radius: 12px;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    color: #006D77;
    font-size: 2.5em;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-links a {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.hero-links a:first-child {
    background-color: #006D77;
    color: white;
}

.hero-links a:last-child {
    border: 2px solid #006D77;
    color: #006D77;
}

.hero-links a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Main Services */
.main-services {
    padding: 60px 0;
}

.main-services h2 {
    text-align: center;
    margin: 40px 0;
    color: #333;
}

.services-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.service-column {
    width: 32%;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-column h3 {
    margin-bottom: 20px;
    color: #006D77;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-column ul {
    list-style: none;
    padding: 0;
}

.service-column li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-column li i {
    color: #006D77;
    margin-top: 4px;
}

/* Additional Services */
.additional-services {
    margin: 60px 0;
    background: #f8fafa;
    padding: 40px;
    border-radius: 12px;
}

.additional-services h2 {
    margin-bottom: 30px;
    text-align: center;
}

.additional-services ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.additional-services li {
    margin-bottom: 15px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.additional-services li i {
    color: #006D77;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
    background-color: #006D77;
    color: white;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
    }
    
    .service-column {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .nav-links {
        display: none;
    }

    .hero-links {
        flex-direction: column;
        align-items: center;
    }

    .hero-links a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 5px;
    }
    .contact-container {
        flex-direction: column;
        text-align: center;
    }
}
/* Add these new styles to your existing styles.css file */

.about-section {
    padding: 60px 0;
    background-color: #fff;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.owner-info {
    text-align: center;
    margin-bottom: 40px;
}

.owner-photo {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.why-us-section {
    padding: 60px 0;
    background-color: #f8fafa;
    border-radius: 12px;
    margin: 40px 0;
}

.section-title {
    text-align: center;
    color: #006D77;
    margin-bottom: 40px;
}

.section-title i {
    margin-right: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-card i {
    font-size: 2em;
    color: #006D77;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #006D77;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .owner-photo {
        width: 250px;
        height: 333px;
    }
}/* Add these new styles to your existing styles.css file */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    text-align: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2.5em;
    color: #006D77;
}

.service-card h2 {
    color: #006D77;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.service-details {
    color: #333;
}

.service-details h3 {
    color: #006D77;
    margin-bottom: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.service-details li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-details li i {
    color: #006D77;
    margin-top: 4px;
}

.highlight-card {
    background: #f8fafa;
    border: 2px solid #006D77;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
}