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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 100vh;
    overflow: hidden;
}

/* Split Background: Top Half Blue, Bottom Half Yellow */
.hero-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #0057B8; /* Ukrainian Blue */
    z-index: -1;
}

.hero-section::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #FFD700; /* Ukrainian Yellow */
    z-index: -1;
}

/* Top Left Content */
.top-left-content {
    flex: 1;
    padding: 60px 40px;
    color: white;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.top-left-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.primary-date {
    font-size: 1.3rem;
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 8px;
}

.vote-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 8px;
}

.platform-section {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.platform-section h2 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.platform-intro {
    font-size: 1.3rem;
    text-align: center;
}

.platform-items {
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: nowrap;
}

.platform-item {
    margin: 0;
    font-size: 1.125rem;
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.corruption-text {
    color: #000000;
    background-color: transparent;
    padding: 3px 8px;
    border-radius: 5px;
    display: inline-block;
    white-space: nowrap;
}

.deiced-pro {
    color: #ffffff;
    background-image: url('/images/nato-america-flag.jpg');
    background-size: cover;
    background-position: center;
    padding: 3px 8px;
    border-radius: 5px;
    display: inline-block;
    white-space: nowrap;
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        -2px 0 0 #000,
        2px 0 0 #000,
        0 -2px 0 #000,
        0 2px 0 #000;
    font-weight: bold;
}

.pro-ukraine {
    background: linear-gradient(90deg, #0057B8 0%, #0057B8 50%, #FFD700 50%, #FFD700 100%);
    color: #000;
    padding: 3px 8px;
    border-radius: 5px;
    display: inline-block;
    white-space: nowrap;
}

/* Donation Box */
.donation-box-container {
    flex: 1;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 2;
}

.donation-box {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 450px;
    width: 100%;
    border: 3px solid #0057B8;
}

.donation-header {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: center;
}

.profile-pic-section {
    flex-shrink: 0;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #0057B8;
}

.support-message {
    flex: 1;
    text-align: center;
}

.support-message p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

/* Donation Buttons */
.donation-buttons-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.donation-btn {
    padding: 12px;
    background-color: #FFD700;
    border: 2px solid #0057B8;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #0057B8;
}

.donation-btn:hover {
    background-color: #0057B8;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 87, 184, 0.3);
}

.donation-btn.selected {
    background-color: #0057B8;
    color: #FFD700;
    box-shadow: 0 5px 15px rgba(0, 87, 184, 0.5);
}

/* Form Groups */
.form-group {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="number"]:focus {
    outline: none;
    border-color: #0057B8;
    box-shadow: 0 0 5px rgba(0, 87, 184, 0.3);
}

.form-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-group label {
    cursor: pointer;
    color: #333;
    font-weight: 500;
}

.form-group small {
    display: block;
    width: 100%;
    color: #666;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Phone Group */
#phoneGroup input {
    width: 100%;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #0057B8;
    color: #FFD700;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: #003D82;
    box-shadow: 0 5px 15px rgba(0, 87, 184, 0.4);
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}


/* Make something light blue above the three key things area */
.platform-intro {
    color: rgba(0, 87, 184, 0.8);
}



/* Thank You Box */
.thank-you-box {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 450px;
    width: 100%;
    text-align: center;
    border: 3px solid #0057B8;
}

.thank-you-box h2 {
    color: #0057B8;
    font-size: 2rem;
    margin-bottom: 20px;
}

.thank-you-box p {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.social-btn {
    display: inline-block;
    margin: 20px 0;
}

.social-btn img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.social-btn:hover img {
    transform: scale(1.1);
}

.closing-message {
    color: #0057B8;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 30px;
}

/* Footer */
footer.footer {
    background-color: #f5f5f5;
    border-top: 2px solid #0057B8;
    padding: 20px;
    text-align: center;

    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

footer.footer p {
    margin: 0;
    max-width: 1400px;
    margin: 0 auto;
}

footer.footer sup {
    color: #000000;
    font-weight: bold;
}

@media (max-width: 768px) {
    footer.footer {
        font-size: 0.8rem;
        padding: 15px;
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        min-height: auto;
    }

    .hero-section::before,
    .hero-section::after {
        position: static;
        width: 100%;
        height: auto;
    }

    .top-left-content {
        padding: 40px 20px;
        background-color: #0057B8;
    }

    .top-left-content h1 {
        font-size: 2.5rem;
    }

    .donation-box-container {
        padding: 20px;
    }

    .donation-buttons-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .donation-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-pic {
        width: 100px;
        height: 100px;
    }

    .platform-items {
        flex-wrap: nowrap;
        gap: 20px;
    }

    .platform-item {
        font-size: 0.95rem;
        gap: 20px;
    }

    .corruption-text,
    .deiced-pro,
    .pro-ukraine {
        padding: 2px 6px;
    }
}

@media (max-width: 480px) {
    .top-left-content h1 {
        font-size: 2rem;
    }

    .platform-item {
        font-size: 0.85rem;
    }

    .donation-buttons-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .donation-btn {
        padding: 10px;
        font-size: 0.9rem;
    }

    .platform-items {
        flex-wrap: nowrap;
        gap: 15px;
    }

    .corruption-text,
    .deiced-pro,
    .pro-ukraine {
        padding: 2px 4px;
        font-size: 0.75rem;
    }
}

