/* Distribution Page Specific Styles */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.6;
    color: #FFFFFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Overview Section */
.overview-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.text-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #000000;
}

.text-content p {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.image-content {
    text-align: center;
}

.feature-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #000000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #000000;
}

.service-card p {
    color: #666666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #666666;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

/* Process Section */
.process-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-block;
    width: 52px;
    height: 52px;
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 50%;
    line-height: 52px;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #000000;
}

.process-step p {
    color: #666666;
    line-height: 1.6;
}

/* Expertise Section */
.expertise-section {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.expertise-content {
    max-width: 1000px;
    margin: 0 auto;
}

.expertise-text h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #000000;
}

.expertise-text > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.expertise-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.expertise-area {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.expertise-area h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #000000;
}

.expertise-area ul {
    list-style: none;
    padding: 0;
}

.expertise-area li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: #666666;
    line-height: 1.5;
}

.expertise-area li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-description {
        font-size: 0.95rem;
    }
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .services-grid,
    .process-steps,
    .expertise-areas {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1.2rem;
    }
    .service-card,
    .process-step,
    .expertise-area {
        padding: 1.2rem;
    }
}