:root {
    --primary-red: #CC0000;
    --primary-dark: #8B0000;
    --primary-light: #FF4D4D;
    --secondary-gold: #FFD700;
    --dark-text: #333333;
    --light-text: #666666;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--light-bg);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.uml-logo {
    height: 70px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h3 {
    margin: 0;
    color: var(--primary-red);
    font-size: 1.5rem;
}

.logo-text p {
    font-size: 0.9rem;
    color: var(--light-text);
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-outline:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-red);
    cursor: pointer;
}

/* Manifesto Hero Section */
.manifesto-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://lh7-rt.googleusercontent.com/formsz/AN7BsVAXUICIv60Qb2Xr6RBzSI3TrCfXQEpn4iXU7SrnExQnIZQxBdJboK0P_vyyhdnilGKgoVc2b39zRizg6kpnsdA46L5bW9AVhd9jEv4idfqsqqWAaXYfGvAfhgF7kDgbvlqJI6Ah-6rMYEpYBVGzldBju7M3-tOqnBeqEV05GHyn2JM4fU8GWbMMZSZZ58s7OZe6qJL4uSbG_fQ=w1200?key=T6fSF0QxCiTx7qWZhRvA2w');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
}

.manifesto-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.manifesto-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.election-badge {
    background-color: rgba(204, 0, 0, 0.8);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 20px;
}

/* Manifesto Content */
.manifesto-content {
    padding: 40px 0 80px;
}

.manifesto-intro {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

.manifesto-intro p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.manifesto-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.manifesto-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 5px solid var(--primary-red);
}

.manifesto-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.manifesto-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background-color: rgba(204, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.manifesto-item h3 {
    margin-bottom: 15px;
    min-height: 60px;
}

.manifesto-item p {
    color: var(--light-text);
    line-height: 1.7;
}

/* Vision Section */
.vision-section {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-red));
    color: var(--white);
    padding: 60px 0;
    border-radius: var(--border-radius);
    text-align: center;
}

.vision-section h2 {
    color: var(--white);
    border-bottom-color: var(--secondary-gold);
}

.vision-text {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 20px 0 20px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
}


/* Responsive Styles */
@media (max-width: 992px) {
    .manifesto-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .manifesto-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .action-buttons {
        width: 100%;
        order: 3;
        margin-top: 15px;
        justify-content: center;
        display: none;
    }

    .action-buttons.active {
        display: flex;
        padding: 15px;
    }

    .mobile-menu-btn {
        display: block;
        padding: 10px
    }

    .manifesto-hero {
        padding: 60px 0;
    }

    .manifesto-hero h1 {
        font-size: 2rem;
    }

    .manifesto-hero p {
        font-size: 1.1rem;
    }

    .manifesto-container {
        grid-template-columns: 1fr;
    }

    .manifesto-item {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .action-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .manifesto-hero {
        padding: 40px 0;
    }

    .manifesto-hero h1 {
        font-size: 1.8rem;
    }

    .manifesto-icon {
        font-size: 2.5rem;
        height: 70px;
        width: 70px;
    }
}

/* Modal for QR Code */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-content h3 {
    margin-bottom: 20px;
    color: var(--primary-red);
}

.qr-code {
    width: 200px;
    height: 200px;
    margin: 20px auto;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
}

.qr-code img {
    max-width: 100%;
    max-height: 100%;
}

.close-modal {
    background-color: var(--primary-red);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
}

.close-modal:hover {
    background-color: var(--primary-dark);
}