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

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 100px;
}

header {
    background: rgba(255, 255, 255, 0.95);
    color: #7b9fcc;
    padding: 3rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Left navigation items */
.nav-left {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
}

/* Center logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: #7b9fcc;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

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

.logo-main {
    font-size: 2rem;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-sub {
    font-size: 0.7rem;
    color: #666;
    letter-spacing: 1px;
    line-height: 1;
}

/* Right navigation items */
.nav-right {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

/* Dropdown container styling */
.dropdown {
    position: relative;
}

.nav-left a,
.nav-right a {
    color: #7b9fcc;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    font-size: 18px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-left a:hover,
.nav-right a:hover {
    color: #2e6bb3;
}

/* Dropdown arrow */
.dropdown-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown menu styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid rgba(123, 159, 204, 0.2);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.98);
}

.dropdown-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: #7b9fcc;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.25rem;
}

.dropdown-menu a:hover {
    background: rgba(123, 159, 204, 0.1);
    color: #2e6bb3;
    transform: translateX(5px);
}

.dropdown-menu a:first-child {
    margin-top: 0.5rem;
}

.dropdown-menu a:last-child {
    margin-bottom: 0.5rem;
}

.donate-btn {
    background: #c41e3a;
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    border: 2px solid #c41e3a;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 18px;
}

.donate-btn:hover {
    background: #a01729;
    border-color: #a01729;
    transform: translateY(-2px);
    color: white !important;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    gap: 4px;
    position: absolute;
    right: 2rem;
    z-index: 20;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #7b9fcc;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: all 0.3s ease;
    z-index: 15;
}

.mobile-nav.active {
    display: block;
    transform: translateY(0);
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.mobile-nav a {
    color: #7b9fcc;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    padding: 1rem;
    text-align: center;
    width: 100%;
    display: block;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    color: #2e6bb3;
    background: rgba(123, 159, 204, 0.1);
    border-radius: 5px;
}

/* Mobile dropdown styling */
.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #7b9fcc;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    padding: 1rem;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.mobile-dropdown-toggle:hover {
    color: #2e6bb3;
    background: rgba(123, 159, 204, 0.1);
    border-radius: 5px;
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(123, 159, 204, 0.05);
    border-radius: 5px;
    margin-top: 0.5rem;
}

.mobile-dropdown-menu.active {
    max-height: 200px;
}

.mobile-dropdown-menu a {
    padding: 0.8rem 1.5rem;
    font-size: 18px;
    color: #666;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-dropdown-menu a:hover {
    border-left-color: #7b9fcc;
    background: rgba(123, 159, 204, 0.1);
}

.mobile-dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 16px;
}

.mobile-dropdown-arrow.rotated {
    transform: rotate(180deg);
}

.mobile-nav .donate-btn {
    background: #c41e3a;
    color: white !important;
    border-radius: 5px;
    margin-top: 1rem;
    max-width: 200px;
}

.mobile-nav .donate-btn:hover {
    background: #a01729;
    color: white !important;
}

/* Content area for demo */
.content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content h1 {
    text-align: center;
    color: #7b9fcc;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.content p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.no-events {
    height: 40rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-events h1 {
    color: #666;
    font-size: 1.2rem;
}

.no-speeches {
    height: 40rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-speeches h1 {
    color: #666;
    font-size: 1.2rem;
}

/* Large Screens */
@media (max-width: 1200px) {
    nav {
        padding: 0 1.5rem;
    }

    .nav-left,
    .nav-right {
        gap: 1.5rem;
    }

    .nav-left a,
    .nav-right a {
        font-size: 16px;
    }

    .donate-btn {
        font-size: 16px;
    }

    .logo-main {
        font-size: 1.8rem;
    }

    .dropdown-menu a {
        font-size: 15px;
    }
}

/* Medium Screens */
@media (max-width: 1024px) {

    .nav-left,
    .nav-right {
        gap: 1rem;
    }

    .nav-left a,
    .nav-right a {
        font-size: 15px;
        padding: 0.4rem 0.8rem;
    }

    .donate-btn {
        padding: 0.6rem 1.2rem;
        font-size: 15px;
    }

    .logo-main {
        font-size: 1.6rem;
    }

    .logo-sub {
        font-size: 0.6rem;
    }

    .dropdown-menu {
        min-width: 180px;
    }

    .dropdown-menu a {
        padding: 0.8rem 1.2rem;
        font-size: 14px;
    }

    .dropdown-arrow {
        font-size: 12px;
    }
}

/* Small-Medium Screens */
@media (max-width: 900px) {

    .nav-left,
    .nav-right {
        gap: 0.8rem;
    }

    .nav-left a,
    .nav-right a {
        font-size: 14px;
        padding: 0.3rem 0.6rem;
    }

    .donate-btn {
        padding: 0.5rem 1rem;
        font-size: 14px;
    }

    .logo-main {
        font-size: 1.4rem;
    }

    .dropdown-menu {
        min-width: 160px;
    }

    .dropdown-menu a {
        padding: 0.7rem 1rem;
        font-size: 13px;
    }
}

/* Tablet Screens */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    header {
        padding: 2rem 0;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .logo {
        position: static;
        transform: none;
    }

    nav {
        justify-content: center;
        padding: 0 1rem;
    }

    .logo-main {
        font-size: 1.8rem;
    }

    .logo-sub {
        font-size: 0.7rem;
    }

    .dropdown-menu {
        display: none !important;
    }
}

/* Small Screens */
@media (max-width: 480px) {
    body {
        padding-top: 70px;
    }

    header {
        padding: 1.5rem 0;
    }

    nav {
        padding: 0 0.5rem;
    }

    .logo-main {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .logo-sub {
        font-size: 0.6rem;
    }

    .mobile-menu-btn {
        right: 1rem;
    }

    .mobile-nav {
        padding: 1.5rem;
    }

    .mobile-dropdown-toggle {
        font-size: 18px;
    }

    .mobile-dropdown-menu a {
        font-size: 16px;
    }
}

/* Extra Small Screens */
@media (max-width: 360px) {
    .logo-main {
        font-size: 1.3rem;
    }

    .logo-sub {
        font-size: 0.5rem;
    }

    .mobile-nav a {
        font-size: 18px;
    }

    .mobile-dropdown-toggle {
        font-size: 16px;
    }

    .mobile-dropdown-menu a {
        font-size: 14px;
    }
}

/* Content area for demo */
.content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content h1 {
    text-align: center;
    color: #7b9fcc;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.content p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.349);
    z-index: 1;
    opacity: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-left {
    color: white;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.candidate-image {
    width: 100%;
    max-width: 500px;
    height: 600px;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg width="500" height="600" xmlns="http://www.w3.org/2000/svg"%3E%3Crect width="100%25" height="100%25" fill="%23e3f2fd"/%3E%3Ctext x="50%25" y="50%25" font-size="24" fill="%23333" text-anchor="middle" dominant-baseline="middle"%3EAteki%27s Image Here%3C/text%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.candidate-image::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.candidate-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
    text-align: center;
    z-index: 2;
}

.candidate-info h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.candidate-info p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Form Styles */
.signup-form {
    background: white;
    padding: 3rem;
    /* 2rem*/
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 8px solid #7b9fcc;
    /* 3px */
    max-width: 550px;
    /* 450px*/
    width: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header h2 {
    color: #7b9fcc;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    font-size: 0.9rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    flex: none;
    width: 100%;
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 6px solid #7b9fcc;
    /* 2px */
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2e6bb3;
}

.form-group input::placeholder {
    color: #999;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

.join-btn {
    width: 100%;
    background: #7b9fcc;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.join-btn:hover {
    background: #2e6bb3;
    transform: translateY(-2px);
}

.disclaimer {
    font-size: 0.7rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
    line-height: 1.3;
}

.disclaimer a {
    color: #7b9fcc;
    text-decoration: underline;
}

.meetsection {
    padding: 4rem 2rem;
    background-color: #e8f4f0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.meetsection h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
    background-color: #bbdefb;
    max-width: 1200px;
    width: 100%;
    padding: 1rem 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-top {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-image {
    flex: 0 0 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    border: 3px solid #2c3e50;
    max-height: 400px;
}

.about-text-top {
    flex: 1;
    padding: 1rem;
}

.about-text-top p {
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1rem;
}

.about-text-bottom {
    padding: 1rem;
}

.about-text-bottom p {
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1rem;
}

.star-icon {
    color: #ffd700;
    margin-right: 0.5rem;
}

.vision-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 2rem;
    margin: 2rem 0;
}

.vision-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: justify;
}

.vision-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e3c72;
    background-color: #bbdefb;
}

.vision-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-section {
    background: #7b9fcc;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

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

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form .form-group textarea {
    height: 120px;
    resize: vertical;
}

.contact-form .checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.contact-form .checkbox-group input[type="checkbox"] {
    width: auto;
    flex-shrink: 0;
}

.contact-form .checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.donate-section {
    background: linear-gradient(135deg, #7b9fcc 0%, #2e6bb3 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.donate-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.donate-amount {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.donate-amount:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-5px);
}

.donate-amount h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.donate-amount p {
    font-size: 0.9rem;
    opacity: 0.9;
}

footer {
    background: #0f1419;
    color: white;
    text-align: center;
    padding: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 1rem auto;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #ffd700;
}

/* Tablet and small desktop */
@media (max-width: 1024px) {
    .meetsection {
        padding: 3rem 1.5rem;
    }

    .about-top {
        gap: 1.5rem;
    }

    .about-image {
        flex: 0 0 280px;
    }

    .about-image img {
        max-height: 380px;
    }
}

/* Large tablet */
@media (max-width: 768px) {
    .meetsection {
        padding: 2.5rem 1rem;
    }

    .meetsection h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .about-top {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-image {
        flex: none;
        text-align: center;
    }

    .about-image img {
        max-height: 350px;
        max-width: 100%;
    }
}

/* Mobile landscape */
@media (max-width: 640px) {
    .meetsection {
        padding: 2rem 1rem;
    }

    .meetsection h2 {
        font-size: 1.8rem;
    }

    .about-image img {
        max-height: 320px;
    }

    .about-text-top p,
    .about-text-bottom p {
        font-size: 0.95rem;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .meetsection {
        padding: 1.5rem 0.75rem;
    }

    .meetsection h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .about-image img {
        max-height: 280px;
    }

    .about-text-top,
    .about-text-bottom {
        padding: 0.5rem;
    }

    .about-text-top p,
    .about-text-bottom p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .candidate-info h3 {
        font-size: 1.1rem;
    }

    .candidate-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 375px) {
    .meetsection {
        padding: 1rem 0.5rem;
    }

    .meetsection h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .about-container {
        max-width: 100%;
    }

    .about-top {
        gap: 1rem;
    }

    .about-image img {
        max-height: 250px;
    }

    .about-text-top,
    .about-text-bottom {
        padding: 0.25rem;
    }

    .about-text-top p,
    .about-text-bottom p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }

    .candidate-info h3 {
        font-size: 1rem;
    }

    .candidate-info p {
        font-size: 0.8rem;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .meetsection {
        padding: 0.75rem 0.25rem;
    }

    .meetsection h2 {
        font-size: 1.2rem;
    }

    .about-image img {
        max-height: 220px;
    }

    .about-text-top p,
    .about-text-bottom p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .candidate-info h3 {
        font-size: 0.9rem;
    }

    .candidate-info p {
        font-size: 0.75rem;
    }
}

/* =========================
   RESPONSIVE BREAKPOINTS
   ========================= */

/* Extra Large Screens */
@media (max-width: 1600px) {
    .hero-content {
        max-width: 1200px;
    }

    .candidate-image {
        max-width: 450px;
        height: 550px;
    }
}

/* Large Screens */
@media (max-width: 1400px) {
    .hero-content {
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .candidate-image {
        max-width: 400px;
        height: 500px;
    }

    .signup-form {
        max-width: 400px;
    }
}

/* Medium-Large Screens */
@media (max-width: 1200px) {
    .hero-content {
        gap: 2.5rem;
    }

    .candidate-image {
        max-width: 350px;
        height: 450px;
    }
}

/* Medium Screens */
@media (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }

    .candidate-image {
        max-width: 320px;
        height: 420px;
    }

    .signup-form {
        max-width: 360px;
        padding: 1.8rem;
    }

    .vision-text {
        font-size: 1.1rem;
        padding: 1.8rem;
    }

    .donate-options {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
}

/* Small-Medium Screens */
@media (max-width: 900px) {
    .hero-content {
        gap: 1.5rem;
    }

    .candidate-image {
        max-width: 280px;
        height: 380px;
    }

    .signup-form {
        max-width: 320px;
        padding: 1.5rem;
    }

    .form-header h2 {
        font-size: 1.6rem;
    }

    .vision-content h2 {
        font-size: 2.2rem;
    }
}

/* Tablet Screens */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    header {
        padding: 2rem 0;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .hero-left {
        order: 2;
    }

    .hero-right {
        order: 1;
        padding: 1rem;
    }

    .candidate-image {
        max-width: 300px;
        height: 380px;
    }

    .signup-form {
        max-width: 100%;
        padding: 1.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-header h2 {
        font-size: 1.5rem;
    }

    .vision-content h2 {
        font-size: 2rem;
    }

    .vision-text {
        font-size: 1rem;
        padding: 1.5rem;
    }

    .donate-options {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .donate-amount {
        padding: 1.5rem;
    }

    .donate-amount h3 {
        font-size: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Small Screens */
@media (max-width: 480px) {
    body {
        padding-top: 70px;
    }

    header {
        padding: 1.5rem 0;
    }

    .hero-content {
        padding: 0 0.5rem;
        gap: 1.5rem;
    }

    .candidate-image {
        max-width: 250px;
        height: 320px;
    }

    .candidate-info h3 {
        font-size: 1.5rem;
    }

    .candidate-info p {
        font-size: 1rem;
    }

    .signup-form {
        padding: 1rem;
    }

    .form-header h2 {
        font-size: 1.3rem;
    }

    .form-header p {
        font-size: 0.8rem;
    }

    .form-group input {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .join-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .about-text {
        font-size: 0.9rem;
    }

    .vision-content h2 {
        font-size: 1.8rem;
    }

    .vision-text {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .contact-section {
        padding: 3rem 1rem;
    }

    .donate-section {
        padding: 3rem 1rem;
    }

    .donate-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .donate-amount {
        padding: 1rem;
    }

    .donate-amount h3 {
        font-size: 1.3rem;
    }

    .donate-amount p {
        font-size: 0.8rem;
    }

    footer {
        padding: 1.5rem 0.5rem;
    }

    .content {
        padding: 1rem;
    }

    .content h1 {
        font-size: 2rem;
    }

    /* Gallery fixes for small screens */
    .img img {
        width: 100% !important;
        height: 250px !important;
    }
}

/* Extra Small Screens */
@media (max-width: 360px) {
    .candidate-image {
        max-width: 220px;
        height: 280px;
    }

    .signup-form {
        padding: 0.8rem;
    }

    /* .section h2 {
        font-size: 1.5rem;
    } */

    .vision-content h2 {
        font-size: 1.5rem;
    }

    .donate-amount h3 {
        font-size: 1.2rem;
    }

    .img img {
        height: 200px !important;
    }
}

/* Ultra Small Screens */
@media (max-width: 320px) {
    .logo-main {
        font-size: 1.2rem;
    }

    .candidate-image {
        max-width: 200px;
        height: 260px;
    }

    /* .section h2 {
        font-size: 1.4rem;
    } */

    .vision-content h2 {
        font-size: 1.4rem;
    }

    .donate-amount h3 {
        font-size: 1.1rem;
    }

    .img img {
        height: 180px !important;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }

    .hero-left {
        order: 1;
    }

    .hero-right {
        order: 2;
    }

    .candidate-image {
        max-width: 250px;
        height: 300px;
    }

    .signup-form {
        max-width: 350px;
    }
}

/* Large landscape screens */
@media (max-width: 1024px) and (orientation: landscape) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .candidate-image {
        max-width: 300px;
        height: 350px;
    }
}