:root {
    --primary-blue: #265EBE;
    --accent-blue: #19B7FF;
    --dark-blue: #0A2540;
    --light-bg: #F9FAFB;
    --white: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;
}

.dpdp-section {
    padding: 80px 0;
}

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

.dpdp-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.dpdp-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    background-color: var(--dark-blue);
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    padding: 120px 0;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 43, 107, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.btn-dpdp {
    background-color: var(--accent-blue);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-dpdp:hover {
    background-color: #009ce4;
}

/* UCM Section */
.ucm-section {
    background-color: var(--white);
    color: var(--primary-blue);
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.section-subtext {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto 50px;
}

.ucm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.ucm-card {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    overflow: hidden;
}

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

.ucm-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    padding: 10px;
}

.ucm-icon img {
    width: 100%;
}

.ucm-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    line-height: 1.4;
}

/* CCM Section */
.ccm-section {
    background: linear-gradient(135deg, #2D58A7, #1A3C7E);
    color: var(--white);
    text-align: center;
}

.ccm-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
}

.ccm-list {
    text-align: left;
    max-width: 300px;
}

.ccm-item {
    margin-bottom: 30px;
}

.ccm-item-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.ccm-item-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.ccm-diagram {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ccm-circle-main {
    width: 140px;
    height: 140px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 10px solid var(--accent-blue);
    z-index: 2;
}

.ccm-circle-main img {
    width: 60px;
}

.ccm-node {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 3;
    border: 2px solid var(--accent-blue);
}

.node-1 { top: 10%; left: 50%; transform: translateX(-50%); }
.node-2 { top: 30%; right: 10%; }
.node-3 { bottom: 20%; right: 20%; }
.node-4 { bottom: 20%; left: 20%; }
.node-5 { top: 30%; left: 10%; }

/* DSR Management Section */
.dsr-section {
    background: var(--white);
}

.dsr-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.dsr-illustration {
    flex: 1;
    width: 40%;
    text-align: center;
}

.dsr-illustration img {
    max-width: 100%;
    width: 60%;
}

.dsr-content {
    flex: 1;
}

.dsr-list {
    list-style: none;
    padding: 0;
}

.dsr-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

.dsr-number {
    width: 24px;
    height: 24px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Data Discovery Section */
.discovery-section {
    background: linear-gradient(to bottom, #2D58A7, #1A3C7E);
    color: var(--white);
}

.discovery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.discovery-card {
    background: linear-gradient(177.08deg, #EAF0FB 80.34%, #5388FF 158.95%);
    border-bottom: 3px solid #265EBE;
    border-radius: 12px;
    box-shadow: 0px 4px 4px 0px #00000040;
    padding: 15px 30px;
    text-align: center;
}

.discovery-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.discovery-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--primary-blue);
    font-weight: 600;
}

/* Grievance Section */
.grievance-section {
    background: linear-gradient(rgba(0, 43, 107, 0.8), rgba(0, 43, 107, 0.8)), url('assets/image/grievance-bg.webp'); /* I should generate this or use a placeholder */
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    background-attachment: fixed;
}

/* Database Monitoring Section */
.db-monitoring-section {
    background: var(--white);
}

.db-container {
    display: flex;
    align-items: center;
    gap: 50px;
}
.dsr-management-card{
    background: #002B6B;
    border-radius: 20px;
    padding: 40px;
    color: white;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .ucm-grid, .discovery-grid {
        grid-template-columns: 1fr;
    }
    
    .dsr-container, .db-container {
        flex-direction: column;
    }
    
    .ccm-container {
        flex-direction: column;
    }
    
    .dpdp-title {
        font-size: 2rem;
    }

    .dsr-illustration, .dsr-illustration img{
        width: 100%;
    }
    .dsr-management-card div:first-child{
        display: none;
    }
    .grievance-section{
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero-section{
        padding: 20px;
    }
}
