/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Contact Bar */
.top-bar {
    background: #1e3a8a;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-info a {
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-info a:hover {
    color: #dc3545;
}

.donate-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.donate-btn:hover {
    background: #c82333;
}

/* Main Header */
.header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    background: #dc3545;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.brand-name {
    color: #1e3a8a;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #dc3545;
}

.support-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.support-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: none;
}

.slide.active {
    display: block;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, rgba(30, 58, 138, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    padding-left: 60px;
}

.hero-text {
    text-align: left;
    max-width: 500px;
    margin-left: 0;
}

.hero-badge {
    background: #dc3545;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: inline-block;
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: #dc3545;
    font-weight: 700;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #dc3545;
    color: white;
}

.btn-primary:hover {
    background: #c82333;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1e3a8a;
    transform: translateY(-3px);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(220, 53, 69, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 4;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #dc3545;
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 30px;
}

.next-arrow {
    right: 30px;
}

/* About Widget Section */
.about-widget {
    padding: 80px 0;
    background: white;
}

.widget-header {
    text-align: left;
    margin-bottom: 50px;
    padding-left: 0;
}

.widget-label {
    color: #dc3545;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.widget-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 10px;
    line-height: 1.2;
}

.accent-text {
    color: #dc3545;
}

.widget-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
}

/* Profile Section */
.profile-section {
    position: relative;
    display: flex;
    justify-content: center;
}

.profile-image {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 320px;
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: #dc3545;
    color: white;
    padding: 18px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.badge-number {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.badge-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Info Section */
.info-section {
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bio-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 24px;
}

.credentials {
    margin: 35px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.credential-icon {
    width: 20px;
    height: 20px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.credential-item span {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.btn-action {
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary-action {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

.btn-primary-action:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.btn-secondary-action {
    background: transparent;
    color: #dc3545;
    border-color: #dc3545;
}

.btn-secondary-action:hover {
    background: #dc3545;
    color: white;
}

/* About Page Section */
.about-page {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.about-layout {
    display: grid;
    grid-template-columns: 2fr 400px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

/* Profile Column */
.profile-column {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.profile-card {
    text-align: center;
}

.profile-photo {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.profile-info {
    padding: 30px 20px;
}

.profile-name {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.profile-title {
    background: #dc3545;
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 20px;
    margin: 20px -20px -30px;
    text-align: center;
}

/* Bio Column */
.bio-column {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-heading {
    font-size: 52px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
    line-height: 1.1;
}

.highlight-name {
    color: #dc3545;
}

.credentials-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
}

.credential-badge i {
    color: #dc3545;
    font-size: 18px;
}

.bio-content-detailed {
    line-height: 1.8;
}

.highlight-quote {
    background: #f1f5f9;
    border-left: 4px solid #dc3545;
    padding: 30px;
    margin-bottom: 35px;
    border-radius: 0 8px 8px 0;
}

.highlight-quote p {
    font-size: 18px;
    font-weight: 500;
    color: #1e293b;
    margin: 0;
    font-style: italic;
    line-height: 1.6;
}

.bio-content-detailed p {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 25px;
}

.bio-content-detailed p:last-child {
    margin-bottom: 35px;
}

/* Credentials Grid for About Page */
.credentials-grid {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.credential-item-alt {
    display: flex;
    align-items: center;
    gap: 10px;
}

.credential-icon-alt {
    width: 20px;
    height: 20px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.credential-item-alt span {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

.action-buttons-alt {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.action-buttons-alt .btn-action {
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.action-buttons-alt .btn-primary-action {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

.action-buttons-alt .btn-primary-action:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.action-buttons-alt .btn-secondary-action {
    background: transparent;
    color: #dc3545;
    border-color: #dc3545;
}

.action-buttons-alt .btn-secondary-action:hover {
    background: #dc3545;
    color: white;
}

/* Image Slideshow Section */
.image-slideshow {
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.slideshow-header {
    text-align: center;
    margin-bottom: 60px;
}

.slideshow-label {
    color: #dc3545;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.slideshow-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 10px;
    line-height: 1.2;
}

.slideshow-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.slideshow-wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide-item.active {
    opacity: 1;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Navigation Controls */
.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slideshow-nav:hover {
    background: #dc3545;
    transform: translateY(-50%) scale(1.1);
}

.prev-slide {
    left: 20px;
}

.next-slide {
    right: 20px;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #dc3545;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(220, 53, 69, 0.8);
}

/* Campaign Policy Page Styles - Enhanced Design */
.campaign-policy-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 200px);
    position: relative;
}

.campaign-policy-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
    z-index: 0;
}

.campaign-policy-page .container {
    position: relative;
    z-index: 1;
}

/* Enhanced Profile Section */
.profile-section-mobile {
    max-width: 420px;
    margin: 0 auto 50px auto;
    position: relative;
}

.profile-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.profile-photo {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-card:hover .profile-photo {
    transform: scale(1.02);
}

.profile-info {
    padding: 40px 30px;
    background: white;
    position: relative;
}

.profile-name {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-title {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 25px;
    margin: 25px -30px -40px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.3);
}

.profile-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

/* Enhanced Policy Content Section */
.policy-content-section {
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.policy-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05) 0%, rgba(30, 58, 138, 0.05) 100%);
    border-radius: 50%;
    transform: translate(50%, -50%);
    z-index: 0;
}

.page-heading {
    font-size: 56px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 40px;
    line-height: 1.1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc3545 0%, #1e3a8a 100%);
    border-radius: 2px;
}

.highlight-name {
    background: linear-gradient(135deg, #dc3545 0%, #1e3a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-content {
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.section {
    margin-bottom: 50px;
    position: relative;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #dc3545 0%, #1e3a8a 100%);
    border-radius: 2px;
}

.pillar-section {
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border-left: 6px solid #dc3545;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pillar-section::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
    border-radius: 50%;
    z-index: 0;
}

.pillar-title {
    font-size: 26px;
    font-weight: 800;
    color: #dc3545;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

.priority-list,
.vision-list,
.welfare-list {
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.priority-list h4,
.vision-list h4,
.welfare-list h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 2px solid #e9ecef;
}

.priority-list ul,
.vision-list ul,
.welfare-list ul {
    list-style: none;
    padding-left: 0;
    background: rgba(248, 249, 250, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.priority-list li,
.vision-list li,
.welfare-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: #64748b;
    line-height: 1.7;
    font-size: 15px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.priority-list li:hover,
.vision-list li:hover,
.welfare-list li:hover {
    color: #1e293b;
    padding-left: 40px;
}

.priority-list li:before,
.vision-list li:before,
.welfare-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    color: white;
    background: linear-gradient(135deg, #dc3545 0%, #1e3a8a 100%);
    font-weight: bold;
    font-size: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
}

.conclusion-section {
    background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 41, 59, 0.3);
}

.conclusion-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    z-index: 0;
}

.conclusion-section p {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 1;
    text-align: center;
    font-weight: 400;
}

.policy-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 25px;
    text-align: justify;
    transition: color 0.3s ease;
}

.policy-content p:hover {
    color: #475569;
}

/* Desktop Layout */
@media (min-width: 1025px) {
    .campaign-policy-page {
        padding: 80px 0;
    }
    
    .campaign-policy-page .container {
        display: grid;
        grid-template-columns: 350px 1fr;
        gap: 60px;
        max-width: 1400px;
        align-items: start;
    }
    
    .profile-section-mobile {
        margin-bottom: 0;
        position: sticky;
        top: 100px;
    }
    
    .profile-card {
        margin-bottom: 0;
    }
    
    .policy-content-section {
        margin: 0;
    }
    
    .page-heading {
        text-align: left;
    }
}

/* Large Desktop - Better space utilization */
@media (min-width: 1200px) {
    .campaign-policy-page .container {
        grid-template-columns: 380px 1fr;
        gap: 80px;
    }
    
    .profile-section-mobile {
        max-width: 380px;
    }
}

/* Mobile Responsive Design - Enhanced */
@media (max-width: 768px) {
    .campaign-policy-page {
        padding: 60px 0 40px 0;
    }
    
    .campaign-policy-page::before {
        height: 150px;
    }
    
    .profile-section-mobile {
        margin: 0 15px 40px 15px;
        max-width: calc(100% - 30px);
    }
    
    .profile-card {
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    
    .profile-photo {
        height: 350px;
    }
    
    .profile-info {
        padding: 30px 20px;
    }
    
    .profile-name {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .profile-title {
        font-size: 11px;
        padding: 15px 20px;
        letter-spacing: 1.5px;
        margin: 20px -20px -30px;
    }
    
    .policy-content-section {
        margin: 0 15px;
        padding: 40px 25px;
        border-radius: 15px;
    }
    
    .page-heading {
        font-size: 36px;
        margin-bottom: 35px;
    }
    
    .page-heading::after {
        width: 60px;
        height: 3px;
    }
    
    .section {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .section-title::after {
        width: 50px;
        height: 3px;
    }
    
    .pillar-section {
        padding: 30px 20px;
        margin-bottom: 40px;
        border-radius: 12px;
        border-left-width: 4px;
    }
    
    .pillar-section::before {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
    }
    
    .pillar-title {
        font-size: 20px;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    
    .priority-list h4,
    .vision-list h4,
    .welfare-list h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .priority-list ul,
    .vision-list ul,
    .welfare-list ul {
        padding: 15px;
        border-radius: 8px;
    }
    
    .priority-list li,
    .vision-list li,
    .welfare-list li {
        font-size: 14px;
        padding: 10px 0;
        padding-left: 30px;
        line-height: 1.6;
    }
    
    .priority-list li:before,
    .vision-list li:before,
    .welfare-list li:before {
        width: 20px;
        height: 20px;
        font-size: 11px;
        top: 10px;
    }
    
    .conclusion-section {
        padding: 35px 25px;
        border-radius: 15px;
        margin-top: 40px;
    }
    
    .conclusion-section::before {
        width: 100px;
        height: 100px;
        top: -30px;
        left: -30px;
    }
    
    .conclusion-section p {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .policy-content p {
        font-size: 14px;
        line-height: 1.8;
        text-align: left;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .campaign-policy-page {
        padding: 40px 0 30px 0;
    }
    
    .campaign-policy-page::before {
        height: 120px;
    }
    
    .profile-section-mobile {
        margin: 0 10px 30px 10px;
    }
    
    .profile-card {
        border-radius: 12px;
    }
    
    .profile-photo {
        height: 280px;
    }
    
    .profile-info {
        padding: 25px 15px;
    }
    
    .profile-name {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .profile-title {
        font-size: 10px;
        padding: 12px 15px;
        letter-spacing: 1px;
        margin: 15px -15px -25px;
    }
    
    .policy-content-section {
        margin: 0 10px;
        padding: 30px 20px;
        border-radius: 12px;
    }
    
    .policy-content-section::before {
        width: 120px;
        height: 120px;
    }
    
    .page-heading {
        font-size: 30px;
        margin-bottom: 30px;
    }
    
    .page-heading::after {
        width: 50px;
        height: 3px;
    }
    
    .section {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 18px;
    }
    
    .section-title::after {
        width: 40px;
        height: 2px;
    }
    
    .pillar-section {
        padding: 25px 15px;
        margin-bottom: 30px;
        border-radius: 10px;
        border-left-width: 4px;
    }
    
    .pillar-section::before {
        width: 30px;
        height: 30px;
        top: 12px;
        right: 12px;
    }
    
    .pillar-title {
        font-size: 18px;
        margin-bottom: 18px;
        letter-spacing: 0.8px;
    }
    
    .priority-list h4,
    .vision-list h4,
    .welfare-list h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .priority-list ul,
    .vision-list ul,
    .welfare-list ul {
        padding: 12px;
        border-radius: 6px;
    }
    
    .priority-list li,
    .vision-list li,
    .welfare-list li {
        font-size: 13px;
        padding: 8px 0;
        padding-left: 28px;
        line-height: 1.5;
    }
    
    .priority-list li:before,
    .vision-list li:before,
    .welfare-list li:before {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: 8px;
    }
    
    .conclusion-section {
        padding: 25px 20px;
        border-radius: 12px;
        margin-top: 30px;
    }
    
    .conclusion-section::before {
        width: 80px;
        height: 80px;
        top: -25px;
        left: -25px;
    }
    
    .conclusion-section p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .policy-content p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 18px;
    }
}

/* Footer */
.footer {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 30px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

.richcytech-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.richcytech-link:hover {
    color: #1ea952;
    text-decoration: underline;
}

.richcytech-link::before {
    content: "💬";
    margin-right: 4px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.richcytech-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 20px 0;
    }
    
    .footer .container {
        gap: 12px;
    }
    
    .footer p {
        font-size: 12px;
        text-align: center;
        line-height: 1.4;
    }
    
    .richcytech-link {
        font-size: 12px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 8px;
        font-size: 12px;
    }
    
    .contact-info span {
        justify-content: center;
    }
    
    .social-info {
        justify-content: center;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nav {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 5px 10px;
    }
    
    .support-btn {
        padding: 10px 20px;
        font-size: 11px;
    }
    
    .hero-slider {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 15px;
        align-items: center;
        justify-content: center;
        min-height: 100%;
    }
    
    .hero-text {
        text-align: center;
        max-width: 100%;
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 6px 15px;
        margin-bottom: 20px;
        align-self: center;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 25px;
        text-align: center;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        justify-content: center;
        width: 100%;
        max-width: 280px;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 11px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .prev-arrow {
        left: 10px;
    }
    
    .next-arrow {
        right: 10px;
    }
    
    .about-widget {
        padding: 40px 0;
    }
    
    .widget-header {
        text-align: center;
        margin-bottom: 30px;
        padding-left: 0;
    }
    
    .widget-label {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .widget-title {
        font-size: 28px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .widget-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .info-section {
        padding-right: 0;
        padding: 0 10px;
        order: 2;
    }
    
    .profile-section {
        max-width: 280px;
        margin: 0 auto;
        order: 1;
    }
    
    .bio-content {
        text-align: left;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .bio-content p {
        font-size: 14px;
        margin-bottom: 15px;
        text-align: left;
    }
    
    .credentials {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 25px 0;
        text-align: left;
    }
    
    .credential-item {
        justify-content: flex-start;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 25px;
    }
    
    .btn-action {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .profile-column {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .bio-column {
        padding: 25px 15px;
    }
    
    .page-heading {
        font-size: 28px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .credentials-row {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        text-align: center;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 20px 0;
    }
    
    .credential-item-alt {
        justify-content: flex-start;
    }
    
    .action-buttons-alt {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 25px;
    }
    
    .action-buttons-alt .btn-action {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
        font-size: 12px;
    }
    
    /* Slideshow Responsive */
    .image-slideshow {
        padding: 60px 0;
    }
    
    .slideshow-header {
        margin-bottom: 40px;
    }
    
    .slideshow-label {
        font-size: 12px;
    }
    
    .slideshow-title {
        font-size: 28px;
    }
    
    .slideshow-container {
        max-width: 100%;
        margin: 0 15px;
        border-radius: 10px;
    }
    
    .slideshow-wrapper {
        height: 300px;
    }
    
    .slideshow-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .prev-slide {
        left: 10px;
    }
    
    .next-slide {
        right: 10px;
    }
    
    .slide-indicators {
        bottom: 15px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .highlight-quote {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .highlight-quote p {
        font-size: 14px;
    }
    
    .bio-content-detailed p {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .top-bar {
        padding: 6px 0;
    }
    
    .contact-info {
        font-size: 11px;
    }
    
    .donate-btn {
        padding: 4px 12px;
        font-size: 10px;
    }
    
    .brand-name {
        font-size: 14px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .support-btn {
        padding: 8px 16px;
        font-size: 10px;
    }
    
    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-content {
        padding: 30px 10px;
        min-height: 100%;
    }
    
    .hero-text {
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 6px 15px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 13px;
        margin-bottom: 20px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .btn {
        padding: 10px 15px;
        font-size: 10px;
    }
    
    .slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .widget-label {
        font-size: 12px;
    }
    
    .widget-title {
        font-size: 24px;
    }
    
    .experience-badge {
        bottom: -10px;
        right: -10px;
        padding: 12px;
    }
    
    .badge-number {
        font-size: 18px;
    }
    
    .badge-text {
        font-size: 10px;
    }
    
    .profile-section {
        max-width: 250px;
    }
    
    .bio-content p {
        font-size: 13px;
    }
    
    .credential-item span {
        font-size: 12px;
    }
    
    .btn-action {
        font-size: 11px;
        padding: 10px 15px;
    }
    
    .page-heading {
        font-size: 24px;
    }
    
    .bio-column {
        padding: 20px 12px;
    }
    
    .credential-badge {
        font-size: 12px;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .credential-item-alt span {
        font-size: 12px;
    }
    
    .action-buttons-alt .btn-action {
        font-size: 11px;
        padding: 10px 15px;
    }
    
    /* Slideshow Mobile */
    .image-slideshow {
        padding: 40px 0;
    }
    
    .slideshow-title {
        font-size: 24px;
    }
    
    .slideshow-container {
        margin: 0 10px;
    }
    
    .slideshow-wrapper {
        height: 250px;
    }
    
    .slideshow-nav {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .prev-slide {
        left: 5px;
    }
    
    .next-slide {
        right: 5px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .highlight-quote {
        padding: 15px 12px;
    }
    
    .highlight-quote p {
        font-size: 13px;
    }
    
    .bio-content-detailed p {
        font-size: 13px;
    }
    
    .profile-photo {
        height: 300px;
    }
    
    .profile-name {
        font-size: 20px;
    }
    
    .profile-title {
        font-size: 11px;
        padding: 10px 15px;
    }
}