/* إعدادات عامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ألوان حزب حماة وطن */
    --primary-color: #1a5490; /* أزرق */
    --secondary-color: #FFD700; /* ذهبي */
    --accent-color: #0d2f52; /* أزرق داكن */
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 25px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: #fff;
    direction: rtl;
    text-align: right;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* شريط التواصل العلوي */
.top-bar {
    background: linear-gradient(135deg, #1a5490, #0d2f52);
    color: var(--text-light);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-info span {
    margin-left: 25px;
}

.top-info i {
    margin-left: 8px;
    color: var(--secondary-color);
}

.social-links a {
    color: var(--text-light);
    margin-left: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* القائمة الرئيسية */
.header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    animation: pulse 2s infinite;
}

.crown-symbol {
    font-size: 45px;
    color: var(--secondary-color);
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.5));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo-text h1 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0;
}

.logo-text p {
    font-size: 13px;
    color: var(--accent-color);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

/* القسم الرئيسي */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a5490 0%, #0d2f52 100%);
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
    padding: 100px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.9) 0%, rgba(13, 47, 82, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.candidate-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    width: 280px;
    height: 280px;
    border-radius: 20px;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    box-sizing: border-box;
    gap: 10px;
}

.candidate-badge:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.badge-number-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 0;
}

.badge-number-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0;
    margin-top: 0;
}

.badge-container {
    display: flex;
    justify-content: center;
}

.hero-text-container {
    color: var(--text-light);
    text-align: right;
    animation: fadeInUp 1s ease;
}

.badge-number {
    font-size: 100px;
    font-weight: 900;
    color: var(--secondary-color);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    line-height: 0.9;
    margin: 0;
}

.badge-symbol {
    font-size: 60px;
    margin: 5px 0;
}

.badge-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}

.hero-title {
    font-size: 70px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
    text-align: right;
}

.hero-location {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 500;
    color: var(--text-light);
    text-align: right;
}

.party-info {
    margin: 30px 0;
}

.party-logo {
    max-width: 100px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.party-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), #ffed4e);
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 3px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    color: var(--secondary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-8px); }
}

/* عناوين الأقسام */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 45px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 20px;
    border-radius: 10px;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* قسم من أنا */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e0ebf5 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 5px solid var(--secondary-color);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.candidate-number {
    font-size: 40px;
    font-weight: 900;
    color: var(--text-light);
}

.about-text h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.designation {
    font-size: 20px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.about-description {
    font-size: 18px;
    line-height: 2;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.candidate-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-item i {
    font-size: 30px;
    color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 237, 78, 0.15));
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.info-item strong {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* قسم البرنامج الانتخابي */
.program {
    padding: 100px 0;
    background: linear-gradient(135deg, #e0ebf5 0%, #f0f4f8 100%);
}

/* سلايدر البرنامج الانتخابي */
.program-slider-wrap {
    max-width: 1200px;
    margin: 50px auto 0;
}

.slider-main {
    position: relative;
    background: #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.slider-images {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
    background: #f0f0f0;
}

.slider-img {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    cursor: zoom-in;
}

.slider-img.active {
    opacity: 1;
    left: 0;
    position: relative;
    pointer-events: auto;
}

.slider-img.slide-out {
    left: -100%;
    opacity: 0;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 84, 144, 0.9);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 100;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 25px rgba(26, 84, 144, 0.5);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-info {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(26, 84, 144, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    z-index: 100;
}

.zoom-hint {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 215, 0, 0.95);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse-zoom 2s infinite;
}

@keyframes pulse-zoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.zoom-hint i {
    font-size: 18px;
}

/* دوائر السلايد شو - تم حذفها لتجنب التكرار */

/* نافذة التكبير */
.zoom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    animation: fadeIn 0.3s ease;
    overflow: auto;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.zoom-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 1;
    visibility: visible;
}

.zoom-img-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    max-height: 90vh;
}

.zoom-content {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    cursor: zoom-in;
}

.zoom-content.zoomed {
    cursor: zoom-out;
    transform: scale(1.5);
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

.zoom-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
    background: none;
    border: none;
    padding: 0;
}

.zoom-close:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}

.zoom-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.9);
    color: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 10001;
    transition: all 0.3s ease;
}

.zoom-arrow:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.5);
}

.zoom-prev {
    left: 20px;
}

.zoom-next {
    right: 20px;
}

.zoom-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 215, 0, 0.9);
    color: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10001;
    transition: all 0.3s ease;
}

.zoom-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.5);
}


.slider-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.slides-wrapper {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
    border-radius: 20px;
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f0f0f0;
    border-radius: 20px;
}

.slide-image {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    border-radius: 20px;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 84, 144, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: rgba(26, 84, 144, 1);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* دوائر السلايد شو */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.3);
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.dot:hover {
    background: rgba(255, 215, 0, 0.6);
    transform: scale(1.2);
}

.slider-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(26, 84, 144, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.program-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 237, 78, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s;
    border: 2px solid var(--secondary-color);
}

.program-card:hover .card-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, var(--secondary-color), #ffed4e);
}

.card-icon i {
    font-size: 36px;
    color: var(--secondary-color);
}

.program-card:hover .card-icon i {
    color: white;
}

.program-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.program-card > p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.program-list {
    list-style: none;
    padding: 0;
}

.program-list li {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    padding-right: 25px;
    position: relative;
}

.program-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--success-color);
    font-weight: 900;
    font-size: 18px;
}

/* قسم الإنجازات */
.achievements {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.03), rgba(26, 84, 144, 0.03));
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.achievement-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.achievement-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 237, 78, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.achievement-icon i {
    font-size: 45px;
    color: var(--secondary-color);
}

.achievement-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.achievement-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* قسم التواصل */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e0ebf5 100%);
}

.party-banner {
    text-align: center;
    margin-bottom: 40px;
}

.party-banner-img {
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 237, 78, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--secondary-color);
}

.info-icon i {
    font-size: 26px;
    color: var(--secondary-color);
}

.info-details h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.info-details p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.social-media {
    margin-top: 40px;
}

.social-media h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    font-size: 20px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon.facebook { background: #1877f2; }
.social-icon.twitter { background: #1da1f2; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.youtube { background: #ff0000; }
.social-icon.whatsapp { background: #25d366; }

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s;
    background: var(--light-bg);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.contact-form .btn-primary {
    width: 100%;
    padding: 18px;
    font-size: 18px;
}

/* قسم عن الحزب */
.party {
    padding: 100px 0;
    background: linear-gradient(135deg, #e0ebf5 0%, #f0f4f8 100%);
}

.party-card {
    max-width: 1000px;
    margin: 0 auto;
}

.party-card-inner {
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.08), rgba(26, 84, 144, 0.04));
    border: 3px solid var(--primary-color);
    border-radius: 25px;
    padding: 60px;
    display: grid;
    grid-template-columns: 0.8fr 1.5fr;
    gap: 50px;
    align-items: center;
    box-shadow: 0 15px 50px rgba(26, 84, 144, 0.2);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.party-card-inner:hover {
    box-shadow: 0 20px 60px rgba(26, 84, 144, 0.25);
    transform: translateY(-8px);
    border-color: var(--secondary-color);
}

.party-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a5490 0%, #0d2f52 50%, #1a5490 100%);
    border-radius: 20px;
    padding: 40px;
    height: 350px;
    box-shadow: 0 10px 30px rgba(26, 84, 144, 0.4);
    border-right: 6px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.party-image-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.party-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 280px;
    max-height: 280px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.party-card-content h3 {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.party-description {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 30px;
    text-align: justify;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border-right: 4px solid var(--secondary-color);
}

.party-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 3px 10px rgba(26, 84, 144, 0.08);
    transition: all 0.3s;
}

.value-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(26, 84, 144, 0.12);
    background: rgba(255, 255, 255, 1);
}

.value-item i {
    font-size: 22px;
    color: var(--secondary-color);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.value-item span {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.party-card-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 700;
}

/* الفوتر */
.footer {
    background: linear-gradient(135deg, var(--dark-bg), #0f0f1e);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .crown-symbol {
    font-size: 35px;
    color: #FFD700;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.5));
}

.footer-logo .crown-symbol i {
    color: #FFD700;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
}

.footer-logo p {
    font-size: 13px;
    color: #aaa;
}

.footer-desc {
    color: #ccc;
    line-height: 1.8;
}

.footer-section h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-links,
.footer-info {
    list-style: none;
}

.footer-links li,
.footer-info li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(-5px);
}

.footer-info li {
    color: #ccc;
}

.footer-info i {
    color: var(--secondary-color);
    margin-left: 10px;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-light);
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
}

.entity-info {
    color: #999;
    font-size: 13px;
    line-height: 1.6;
    margin-top: 15px;
}

.official-label,
.official-label-en {
    font-size: 13px;
    color: var(--secondary-color);
    margin: 5px 0;
}

.official-label-en {
    font-size: 12px;
    opacity: 0.9;
}

/* البيان الرسمي */
.official-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.official-banner i {
    margin-left: 8px;
    color: white;
}

/* الصفحات القانونية */
.legal-page {
    padding: 80px 0;
    background: var(--light-bg);
    min-height: 100vh;
}

.legal-content {
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 1000px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--secondary-color);
}

.legal-header h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.legal-header h2 {
    font-size: 28px;
    color: var(--accent-color);
    font-weight: 400;
    margin-bottom: 15px;
}

.update-date {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.legal-section h3 i {
    margin-left: 10px;
    color: var(--secondary-color);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.legal-section ul {
    list-style: none;
    padding-right: 20px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-right: 25px;
    position: relative;
}

.legal-section ul li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
}

.entity-box,
.contact-box {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: 10px;
    border-right: 5px solid var(--secondary-color);
    margin: 20px 0;
}

.entity-box p,
.contact-box p {
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.entity-box strong,
.contact-box strong {
    color: var(--primary-color);
}

.contact-box i {
    margin-left: 8px;
    color: var(--secondary-color);
}

.contact-box a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-box a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.back-to-home {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.back-to-home .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.back-to-home .btn i {
    font-size: 18px;
}

/* زر العودة للأعلى */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* استجابة الشاشات */
@media (max-width: 992px) {
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .slide-image {
        max-height: 500px;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-8px, -6px);
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-text-container {
        text-align: center;
    }

    .hero-subtitle,
    .hero-location {
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .candidate-info {
        grid-template-columns: 1fr;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }

    .party-card-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px;
    }

    .party-image-container {
        height: 280px;
        border-radius: 18px;
    }

    .party-logo {
        max-width: 230px;
        max-height: 230px;
    }

    .party-card-content h3 {
        font-size: 26px;
    }

    .party-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .top-info {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .top-info span {
        margin-left: 0;
    }

    .slider-main {
        border-radius: 15px;
        margin: 0 10px;
    }

    .slider-images {
        min-height: 350px;
    }

    .slider-img {
        width: 100%;
        height: 350px;
        object-fit: contain;
        object-position: center;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        background: rgba(26, 84, 144, 0.95);
    }

    .slider-prev {
        left: 8px;
    }

    .slider-next {
        right: 8px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slider-prev {
        left: 8px;
    }

    .slider-next {
        right: 8px;
    }

    .zoom-hint {
        font-size: 12px;
        padding: 8px 12px;
        top: 10px;
        left: 10px;
    }

    .slider-info {
        font-size: 14px;
        padding: 8px 15px;
        bottom: 10px;
        right: 10px;
    }

    .slider-counter {
        font-size: 12px;
        padding: 8px 12px;
        bottom: 10px;
        right: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .slider-dots {
        gap: 8px;
        margin-top: 20px;
        padding: 0 15px;
    }

    .slide-image {
        max-height: 350px;
        height: 350px;
        object-fit: cover;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-location {
        font-size: 18px;
    }

    .badge-number {
        font-size: 60px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .party-card-inner {
        padding: 30px;
    }

    .party-image-container {
        height: 220px;
        padding: 30px;
        border-radius: 16px;
    }

    .party-logo {
        max-width: 160px;
        max-height: 160px;
    }

    .party-card-content h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .party-description {
        font-size: 14px;
        padding: 15px;
    }

    .party-values-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .value-item {
        padding: 10px 12px;
        font-size: 13px;
    }

    .value-item i {
        font-size: 18px;
    }

    .party-card-content .btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .badge-number {
        font-size: 50px;
    }

    .candidate-badge {
        padding: 20px 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-text h3 {
        font-size: 28px;
    }

    .program-card,
    .achievement-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 25px;
    }

    .slider-main {
        border-radius: 12px;
        margin: 0 5px;
    }

    .slider-images {
        min-height: 280px;
    }

    .slider-img {
        height: 280px;
        object-fit: contain;
        object-position: center;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .slider-prev {
        left: 5px;
    }

    .slider-next {
        right: 5px;
    }

    .zoom-hint {
        font-size: 11px;
        padding: 6px 10px;
        top: 8px;
        left: 8px;
    }

    .zoom-hint i {
        font-size: 14px;
    }

    .slider-info {
        font-size: 12px;
        padding: 6px 12px;
        bottom: 8px;
        right: 8px;
    }

    .slider-counter {
        font-size: 11px;
        padding: 6px 10px;
        bottom: 8px;
        right: 8px;
    }

    .slider-dots {
        gap: 6px;
        margin-top: 15px;
        padding: 0 10px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .slide-image {
        max-height: 280px;
        height: 280px;
        object-fit: contain;
        object-position: center;
    }

    .program-slider-wrap {
        padding: 0 5px;
    }

    .zoom-modal {
        padding: 10px;
        gap: 10px;
    }

    .zoom-close {
        top: 10px;
        right: 10px;
        font-size: 35px;
    }

    .zoom-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .zoom-prev {
        left: 3px;
    }

    .zoom-next {
        right: 3px;
    }

    .zoom-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 15px;
        right: 15px;
    }

    .zoom-content {
        max-height: 60vh;
    }

    .zoom-img-wrapper {
        max-width: 100%;
    }

    .party-card-inner {
        padding: 20px;
        border-radius: 20px;
        gap: 25px;
    }

    .party-image-container {
        height: 200px;
        padding: 25px;
        border-radius: 16px;
    }

    .party-logo {
        max-width: 140px;
        max-height: 140px;
    }

    .party-card-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .party-description {
        font-size: 13px;
        line-height: 1.6;
        padding: 12px;
    }

    .party-values-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 18px;
    }

    .value-item {
        padding: 8px 10px;
        font-size: 12px;
        border-radius: 8px;
    }

    .value-item i {
        font-size: 16px;
    }

    .party-card-content .btn {
        padding: 12px 24px;
        font-size: 13px;
    }
}

/* ���� �� ����� */
.party-page {
    padding: 80px 0;
    background: var(--light-bg);
    min-height: 100vh;
}

.party-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.party-image {
    position: relative;
}

.party-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 5px solid var(--secondary-color);
    background: white;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.party-logo-img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    display: block;
}

.party-text h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.party-intro {
    font-size: 18px;
    line-height: 2;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
}

.party-values {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.party-values h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    padding-right: 30px;
    position: relative;
    display: flex;
    align-items: center;
}

.values-list li i {
    position: absolute;
    right: 0;
    color: var(--secondary-color);
    font-size: 18px;
    margin-left: 15px;
}

.party-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.party-info-section {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 60px;
}

.party-info-section h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--secondary-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border-top: 5px solid var(--secondary-color);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.info-card .info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.info-card .info-icon i {
    font-size: 40px;
    color: white;
}

.info-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .party-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .party-text h2 {
        font-size: 32px;
    }

    .party-intro {
        font-size: 16px;
    }

    .party-buttons {
        flex-direction: column;
    }

    .party-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .party-page {
        padding: 60px 0;
    }

    .party-image-frame {
        min-height: 300px;
        padding: 20px;
    }

    .party-logo-img {
        max-height: 250px;
    }

    .party-text h2 {
        font-size: 28px;
    }

    .party-intro {
        font-size: 15px;
    }

    .party-values {
        padding: 30px 20px;
    }

    .party-values h3 {
        font-size: 22px;
    }

    .values-list li {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .party-info-section {
        padding: 40px 20px;
    }

    .party-info-section h3 {
        font-size: 26px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 30px 20px;
    }

    .info-card .info-icon {
        width: 60px;
        height: 60px;
    }

    .info-card .info-icon i {
        font-size: 28px;
    }

    .info-card h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .party-page {
        padding: 40px 0;
    }

    .party-image-frame {
        min-height: 250px;
        padding: 15px;
    }

    .party-logo-img {
        max-height: 200px;
    }

    .party-text h2 {
        font-size: 24px;
    }

    .party-intro {
        font-size: 14px;
        line-height: 1.8;
    }

    .party-values {
        padding: 20px 15px;
    }

    .party-values h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .values-list li {
        font-size: 13px;
        margin-bottom: 10px;
        padding-right: 25px;
    }

    .party-values li i {
        font-size: 14px;
    }

    .party-info-section {
        padding: 30px 15px;
        margin-bottom: 40px;
    }

    .party-info-section h3 {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .info-card {
        padding: 25px 15px;
    }

    .info-card h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .info-card p {
        font-size: 13px;
    }
}
