/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    color: #333333;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #69931d;
    margin: 10px auto 0;
}

/* Header */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 70px; /* Adjust based on actual logo aspect ratio */
}

.logo {vertical-align: top;}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 600;
    color: #555;
    font-size: 1rem;
        padding: 1rem 0rem;
}

.main-nav a:hover {
    color: #69931d;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(133,133,133, 0.8), rgba(133,133,133, 0.8)), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'); /* Placeholder background image */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 6rem 0;
}

.hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn {
    display: inline-block;
    background-color: #69931d;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease-in-out 0s;
}

.btn:hover {
    background-color: #7bab23;
}

/* Sections General */
.section-content, .section-alt, .section-contact {
    padding: 4rem 0;
}

.section-alt {
    background-color: #e7e7e7;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-card h3 {
    color: #69931d;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.feature-card ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
    position: relative;
}

.feature-card ul li::before {
    content: '•';
    color: #69931d;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Benefits */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.benefit-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 4px solid #69931d;
}

/* Mediator Profile */
.mediator-profile {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
}

/* Domains */
.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.domain-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.domain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.domain-card h4 {
    color: #373737;
    margin-bottom: 1rem;
}

/* Contact Section */
.section-contact {
    background-color: #e7e7e7;
    color: #333;
    text-align: center;
}

.section-contact h2 {
    color: #333;
}

.section-contact h2::after {
    background-color: #333;
}

.contact-info-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    text-align: left;
    align-items: center;
}

.contact-block, .contact-details {
    background: rgba(255,255,255,0.8);
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
}

.contact-block h3 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-block address {
    font-style: normal;
    margin-bottom: 1rem;
}

.map-link {
    color: #69931d;
    font-weight: bold;
}

.contact-details p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-details a {
    color: #333;
}

.contact-details a:hover {
    color: #69931d;
}

/* Footer */
.site-footer {
    background-color: #262626;
    color: #dedede;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .site-header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2rem;
    }
}


a.link-cabinet {
    color: #69931d;
    font-weight: bold;
}