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

body {
    font-family: 'Times New Roman', 'Times', serif;
    background: #e8f5e9;
    color: #1b5e20;
    line-height: 1.7;
}

.page-frame {
    max-width: 1350px;
    margin: 0 auto;
}

.navigation-bar {
    background: #2e7d32;
    padding: 1.6rem 0;
    box-shadow: 0 3px 10px rgba(46, 125, 50, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-frame {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-label {
    font-size: 2.2rem;
    font-weight: 700;
    color: #c8e6c9;
    letter-spacing: 1.5px;
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: #c8e6c9;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
    font-style: italic;
}

.nav-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.main-frame {
    padding: 0 2.5rem;
}

.intro-frame {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    padding: 7rem 4rem;
    margin: 3rem 0;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(46, 125, 50, 0.4);
    border: 3px solid #4caf50;
}

.intro-content {
    max-width: 850px;
    margin: 0 auto;
}

.intro-heading {
    font-size: 3.7rem;
    color: #c8e6c9;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.intro-description {
    font-size: 1.3rem;
    color: #e8f5e9;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.intro-action {
    background: #c8e6c9;
    color: #1b5e20;
    padding: 1.4rem 4.5rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    font-style: italic;
}

.intro-action:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.experts-frame {
    padding: 5rem 0;
}

.frame-title {
    font-size: 2.7rem;
    text-align: center;
    color: #2e7d32;
    margin-bottom: 3.5rem;
    font-weight: 700;
    font-style: italic;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.expert-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.2);
    border: 3px solid #c8e6c9;
    transition: all 0.3s;
}

.expert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.4);
    border-color: #4caf50;
    background: #f1f8e9;
}

.expert-image {
    width: 100%;
    height: 310px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 3px solid #2e7d32;
}

.expert-card h3 {
    color: #2e7d32;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-style: italic;
}

.expert-card p {
    color: #1b5e20;
    font-size: 1.05rem;
    line-height: 1.7;
}

.services-frame {
    padding: 5rem 0;
    background: #ffffff;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.2);
    border: 3px solid #c8e6c9;
}

.services-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 0 3rem;
}

.service-card {
    background: #e8f5e9;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #2e7d32;
    transition: all 0.3s;
}

.service-card:hover {
    background: #c8e6c9;
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.3);
}

.service-card h4 {
    color: #2e7d32;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-style: italic;
}

.service-card p {
    color: #1b5e20;
    font-size: 1.05rem;
    line-height: 1.8;
}

.footer-bar {
    background: #2e7d32;
    padding: 2.5rem 0;
    margin-top: 4rem;
    box-shadow: 0 -3px 10px rgba(46, 125, 50, 0.3);
}

.footer-frame {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #c8e6c9;
}

.footer-frame a {
    color: #c8e6c9;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
    font-style: italic;
}

.footer-frame a:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .experts-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-heading {
        font-size: 2.7rem;
    }
}

.articles-frame {
    padding: 5rem 2.5rem;
    background: #e8f5e9;
    border-top: 3px solid #4caf50;
}

.frame-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #2e7d32;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-style: italic;
}

.articles-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.article-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.2);
    border: 3px solid #4caf50;
    transition: all 0.3s;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(46, 125, 50, 0.4);
    border-color: #2e7d32;
}

.expert-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid #4caf50;
}

.article-card h3 {
    color: #1b5e20;
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 600;
    line-height: 1.4;
    font-style: italic;
}

.article-date {
    color: #2e7d32;
    font-size: 0.9rem;
    margin: 0 1.5rem 1rem;
    font-weight: 600;
    font-style: italic;
}

.article-card p {
    color: #1b5e20;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 1.5rem 1rem;
}

.article-link {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin: 1rem 1.5rem 1.5rem;
    transition: color 0.3s;
    font-style: italic;
}

.article-link:hover {
    color: #1b5e20;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-frame {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-frame {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

