/* 
   Regional Political Empowerment Website
   Pan-African Color Scheme
   Colors: Red (#E31B23), Black (#000000), Green (#008751)
*/

/* Base Styles */
:root {
    --pan-red: #E31B23;
    --pan-black: #000000;
    --pan-green: #008751;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--pan-black);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--pan-green);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--pan-red);
}

/* Electoral Commission Link Styling */
.intro p a {
    color: var(--pan-red) !important;
    font-weight: bold;
    text-decoration: underline;
    border-bottom: 2px solid var(--pan-red);
    padding-bottom: 1px;
}

.intro p a:hover {
    color: var(--white) !important;
    background-color: var(--pan-red);
    padding: 2px 4px;
    border-radius: 3px;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 15px;
    border-radius: 5px;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--pan-black);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, var(--pan-red), var(--pan-black), var(--pan-green));
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.search-container {
    display: flex;
    margin-left: 1rem;
}

#search-input {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    outline: none;
}

#search-button {
    background-color: var(--pan-green);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#search-button:hover {
    background-color: var(--pan-red);
}

/* CMP Tab Styles */
.cmp-tab {
    margin-left: 1rem;
}

.cmp-button {
    display: inline-block;
    background-color: var(--pan-red);
    color: var(--white) !important;
    border: 3px solid var(--pan-black);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cmp-button:hover {
    background-color: #c41e3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    color: var(--white) !important;
}

/* CMP Slogan Styles */
.cmp-slogan {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
}

/* Hero Section with Silver Platter */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    gap: 2rem;
}

.hero-left {
    flex: 0 0 200px;
}

.hero-right {
    flex: 1;
    text-align: center;
}

.silver-platter {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--white);
    transition: transform 0.3s ease;
}

.silver-platter:hover {
    transform: scale(1.05);
}

/* Responsive design for hero */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-left {
        flex: none;
        margin-bottom: 1rem;
    }
    
    .hero-right {
        text-align: center;
    }
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-btn span {
    height: 3px;
    width: 100%;
    background-color: var(--pan-black);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/Uganda regions.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--pan-red) 33.33%, var(--pan-black) 33.33%, var(--pan-black) 66.66%, var(--pan-green) 66.66%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/Uganda regions.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    position: relative;
}

.page-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--pan-red) 33.33%, var(--pan-black) 33.33%, var(--pan-black) 66.66%, var(--pan-green) 66.66%);
}

.page-banner h2 {
    font-size: 2.5rem;
    color: var(--white);
}

/* Main Content Sections */
main {
    padding: 3rem 5%;
}

section {
    margin-bottom: 4rem;
}

section h2 {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--pan-red), var(--pan-black), var(--pan-green));
}

/* Intro Section */
.intro {
    text-align: center;
}

.intro p {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.intro-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.intro-image {
    flex: 1;
    min-width: 300px;
}

.intro-image img {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.caption {
    text-align: center;
    font-style: italic;
    margin-top: 0.5rem;
    color: var(--medium-gray);
}

/* Key Points Section */
.points-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.point {
    flex: 1;
    min-width: 250px;
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.point:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.point h3 {
    color: var(--pan-green);
    margin-bottom: 1rem;
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-placeholder {
    background-color: var(--light-gray);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.profile-placeholder i {
    font-size: 5rem;
    color: var(--pan-green);
    margin-bottom: 1rem;
}

.profile-placeholder .subtitle {
    font-style: italic;
    color: var(--medium-gray);
}

.profile-photo {
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--pan-green);
}

.social-btn {
    display: inline-block;
    background-color: var(--pan-green);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.social-btn:hover {
    background-color: var(--pan-red);
    color: var(--white);
}

.social-btn i {
    margin-right: 0.5rem;
}

/* ERP Section */
.erp-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Regions Section */
.regions-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.regions-map {
    flex: 1;
    min-width: 300px;
}

.regions-text {
    flex: 1;
    min-width: 300px;
}

.regions-list {
    list-style-position: inside;
    margin: 1rem 0;
}

.regions-list li {
    margin-bottom: 0.75rem;
}

/* Vision Pillars */
.pillars-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.pillar {
    flex: 1;
    min-width: 220px;
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background-color: var(--pan-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.pillar-icon i {
    font-size: 2rem;
}

.pillar h3 {
    color: var(--pan-black);
}

/* Strategy Section */
.strategy-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.strategy-text {
    flex: 3;
    min-width: 300px;
}

.strategy-image {
    flex: 2;
    min-width: 300px;
}

.strategy-list {
    margin: 1rem 0 1rem 1.5rem;
}

.strategy-list li {
    margin-bottom: 0.75rem;
}

/* Contact Section */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--pan-green);
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-text h3 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.social-media {
    margin-top: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--pan-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--pan-red);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: var(--pan-green);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--pan-red);
}

/* Map Section */
.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-container img {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta {
    background-color: var(--light-gray);
    padding: 3rem;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--pan-red) 33.33%, var(--pan-black) 33.33%, var(--pan-black) 66.66%, var(--pan-green) 66.66%);
}

.cta h2 {
    margin-bottom: 1rem;
}

.cta p {
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    background-color: var(--pan-green);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--pan-red);
    color: var(--white);
}

.donate-btn {
    background-color: var(--pan-red);
}

.donate-btn:hover {
    background-color: var(--pan-green);
}

/* Donation Modal */
.donation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--medium-gray);
}

.donation-info {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.donation-info h3 {
    color: var(--pan-green);
    margin-bottom: 1rem;
}

.thank-you {
    font-weight: 500;
    color: var(--pan-green);
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 3rem 5% 0;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--pan-red) 33.33%, var(--pan-black) 33.33%, var(--pan-black) 66.66%, var(--pan-green) 66.66%);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--pan-red), var(--pan-black), var(--pan-green));
}

.footer-section p {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--pan-red);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--medium-gray);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--pan-red);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--medium-gray);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .logo h1 {
        font-size: 1.2rem;
    }
    
    nav ul li {
        margin-left: 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .page-banner h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    nav.active {
        max-height: 300px;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
    }
    
    nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 0.75rem 0;
    }
    
    .search-container {
        width: 100%;
        margin: 1rem 0 0;
        justify-content: center;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h2 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .page-banner {
        padding: 2rem 0;
    }
    
    .page-banner h2 {
        font-size: 1.75rem;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .point, .pillar {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 40px;
    }
    
    .logo h1 {
        font-size: 1rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .page-banner h2 {
        font-size: 1.5rem;
    }
    
    .cta {
        padding: 2rem 1rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .footer-section {
        min-width: 100%;
    }
}

/* Certificate Section Styles */
.party-name-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.party-name-link:hover {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.certificate-section {
    background: #f8f9fa;
    padding: 3rem 0;
    margin: 2rem 0;
}

.certificate-section h2 {
    text-align: center;
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.certificate-tabs {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
}

.tab-buttons {
    display: flex;
    background: #000000;
    overflow-x: auto;
}

.tab-btn {
    background: transparent;
    color: white;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: 1;
    min-width: 150px;
    font-size: 1rem;
}

.tab-btn:hover {
    background: rgba(227, 27, 35, 0.3);
}

.tab-btn.active {
    background: #E31B23;
    color: white;
}

.certificate-tab {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    color: #000000 !important;
    font-weight: 700;
}

.certificate-tab:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700) !important;
}

.certificate-tab.active {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    color: #000000 !important;
}

.tab-content {
    display: none;
    padding: 3rem;
}

.tab-content.active {
    display: block;
}

.certificate-content h3 {
    color: #E31B23;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.cert-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.registration-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.detail-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-item:last-child {
    border-bottom: none;
}

.overview-flag {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.certificate-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.certificate-info {
    font-size: 1.1rem;
    line-height: 1.8;
}

.certificate-image-container {
    text-align: center;
}

.certificate-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    border: 3px solid #FFD700;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.certificate-image:hover {
    transform: scale(1.02);
}

.certificate-caption {
    margin-top: 1rem;
}

.certificate-caption p {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.view-certificate-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #E31B23;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-certificate-btn:hover {
    background: #c41e3a;
    transform: translateY(-2px);
}

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

.manifesto-point {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid #E31B23;
    transition: transform 0.3s ease;
}

.manifesto-point:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.point-number {
    background: #E31B23;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.manifesto-point h4 {
    color: #000000;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.manifesto-point p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        min-width: auto;
        text-align: center;
    }
    
    .cert-info-grid,
    .certificate-display {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .manifesto-grid {
        grid-template-columns: 1fr;
    }
    
    .certificate-section h2 {
        font-size: 2rem;
    }
    
    .certificate-content h3 {
        font-size: 1.5rem;
    }
    
    .tab-content {
        padding: 2rem 1rem;
    }
}
