/* Hero Section */
.page-hero {
    position: relative;
    min-height: 40vh;
    width: 100%;
    background: url('../images/hero-bg.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 80px 0;
    text-align: right;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, 
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.75) 50%,
        rgba(255, 255, 255, 0.65) 100%
    );
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-hero .hero-content {
    color: #1B3B8C;
    max-width: 800px;
    margin-right: 0;
    position: relative;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
}

.page-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #FF4081, #1B3B8C);
    border-radius: 2px;
}

.page-hero p {
    font-size: 1.6rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #2c3e50;
    font-weight: 500;
}

.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-top: 30px;
}

.page-hero .breadcrumb a {
    color: #1B3B8C;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-hero .breadcrumb a:hover {
    opacity: 1;
    transform: translateX(-3px);
}

.page-hero .breadcrumb .separator {
    color: #1B3B8C;
    opacity: 0.5;
}

.page-hero .breadcrumb .current {
    color: #1B3B8C;
    opacity: 0.7;
    font-weight: 500;
}

.hero-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: 2;
}

@media (max-width: 992px) {
    .page-hero {
        padding: 60px 0;
    }

    .page-hero h1 {
        font-size: 3rem;
    }

    .page-hero p {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 35vh;
        padding: 50px 0;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero p {
        font-size: 1.2rem;
    }

    .page-hero .breadcrumb {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-hero {
        min-height: 30vh;
        padding: 40px 0;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1.1rem;
    }

    .page-hero .breadcrumb {
        font-size: 0.9rem;
    }
}

/* Services Content */
.services-content {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-header h2 {
    color: #1B3B8C;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: right;
}

.service-list {
    margin-bottom: 30px;
}

.service-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.service-list ul li {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.1rem;
    position: relative;
    padding-right: 20px;
}

.service-list ul li::before {
    content: '•';
    color: #1B3B8C;
    position: absolute;
    right: 0;
    font-size: 1.2em;
}

.service-list ul ul {
    margin-top: 10px;
    padding-right: 20px;
}

.service-image {
    margin-top: 30px;
    text-align: center;
}

.service-image img {
    max-width: 200px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 30vh;
        padding: 40px 0;
    }

    .service-card {
        padding: 20px;
    }

    .service-header h2 {
        font-size: 1.5rem;
    }

    .service-list ul li {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .service-image img {
        max-width: 150px;
    }
} 