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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #201c16;
    line-height: 1.6;
    background-color: #f9f9f8;
}

.d-flex {
    display: flex;
    max-width: 100%;
    justify-content: space-between;
}

.tainer {
    display: flex;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

/* Header */
.header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #201c16;
}

.call-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #30aa4d;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
}

.call-label {
    font-size: 12px;
}

.call-number {
    font-weight: 600;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://ext.same-assets.com/1908705538/2196629501.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
}

.hero-overlay {
    background: rgba(0,0,0,0.2);
}

.hero-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 30px;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 5px;
    width: fit-content;
    float: right;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    padding: 5px 15px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 3px;
}

.breadcrumb span {
    padding: 5px 15px;
    background-color: #30aa4d;
    border-radius: 3px;
}

/* Introduction Section */
.intro-section {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 0px;
    color: #201c16;
}

.intro-text {
    font-size: 16px;
    color: #735940;
    max-width: 900px;
    line-height: 1.8;
}

.green-underline {
    width: 80px;
    height: 4px;
    background-color: #30aa4d;
    margin-top: 20px;
}

/* Herbal Grid */
.herbal-grid {
    padding: 60px 0;
    background-color: #f9f9f8;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.card {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
    padding: 40px 30px;
    color: white;
}

.card-overlay h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

.card-overlay p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.read-more-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: white;
    color: #201c16;
}

/* Get In Touch Section */
.get-in-touch {
    padding: 80px 0;
    background-color: white;
}

.section-label {
    color: #30aa4d;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-text {
    color: #735940;
    max-width: 900px;
    margin: 0px;
}

.contact-boxes {
    width: 50%;
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background-color: #f9f9f8;
    border-radius: 8px;
}

.contact-label {
    font-size: 14px;
    color: #735940;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 18px;
    font-weight: 600;
    color: #201c16;
}

.contact-info-list {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background-color: #f9f9f8;
    border-radius: 8px;
    border-left: 4px solid #30aa4d;
}

.contact-info-item.green-bg {
    background-color: #30aa4d;
    color: white;
    border-left: none;
}

.info-title {
    font-size: 18px;
    font-weight: 600;
}

.info-subtitle {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background-color: #f9f9f8;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.all-article-btn {
    background-color: #ff5722;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff5722;
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.news-badge.love {
    background-color: #e91e63;
}

.news-badge.money {
    background-color: #ff9800;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #201c16;
    line-height: 1.4;
}

.news-content p {
    font-size: 14px;
    color: #735940;
    margin-bottom: 15px;
}

.news-date {
    color: #30aa4d;
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .contact-boxes {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 36px;
    }

    .breadcrumb {
        float: none;
        margin-top: 20px;
    }
}

@media (max-width: 640px) {
    .header-right {
        gap: 10px;
    }

    .call-button {
        padding: 8px 15px;
    }

    .call-number {
        font-size: 14px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
