/* style.css */
:root {
    --primary: #3498db;
    --secondary: #2c3e50;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --success: #2ecc71;
    --warning: #f39c12;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    margin-bottom: 0.5rem;
    color: white;
}

.cookie-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--success);
    color: white;
}

.cookie-accept:hover {
    background: #27ae60;
}

.cookie-decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
    background: var(--primary);
    color: white;
}

.cookie-settings:hover {
    background: #2980b9;
}

.cookie-link {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-link:hover {
    color: #2980b9;
}

/* Cookie Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.cookie-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 5px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--success);
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

input:disabled + .cookie-slider {
    background-color: var(--primary);
    cursor: not-allowed;
}

.cookie-option-text {
    flex: 1;
}

.cookie-option-text strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.cookie-option-text p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: #666;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
    padding: 2rem;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.3s;
    font-size: 0.9rem;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.header-content {
    text-align: center;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 1.5rem;
}

.benefit {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
}

.benefit i {
    margin-right: 8px;
}

.form-container, .content {
    padding: 2.5rem;
}

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

label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 1.1rem;
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: border 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary);
    outline: none;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.required::after {
    content: " *";
    color: var(--accent);
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-success {
    background: var(--success);
}

.btn-success:hover {
    background: #27ae60;
}

.info-text, .privacy-section, .contact-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    font-size: 0.95rem;
    border-left: 4px solid var(--primary);
}

footer {
    text-align: center;
    padding: 2rem;
    color: #777;
    font-size: 0.9rem;
    background: #f9f9f9;
    margin-top: 2rem;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #777;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    color: var(--primary);
}

#confirmation {
    display: none;
    text-align: center;
    padding: 2rem;
    background: var(--light);
    border-radius: 10px;
    margin-top: 2rem;
}

.confirmation-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.price-calculator {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.price-display {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary);
    margin-top: 10px;
}

.payment-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.payment-options {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.payment-option {
    display: flex;
    align-items: center;
}

.payment-option input[type="radio"] {
    width: auto;
    margin-right: 10px;
}

.payment-option label {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    font-size: 1.1rem;
    cursor: pointer;
}

.payment-option i {
    margin-right: 8px;
    font-size: 1.3rem;
}

.fa-paypal {
    color: #003087;
}

.fa-university {
    color: #2c3e50;
}

#paypal-button-container {
    margin: 1rem 0;
}

.bank-details {
    background: white;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
}

h1.content-title {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--light);
    padding-bottom: 0.5rem;
}

h2 {
    color: var(--primary);
    margin: 1.5rem 0 1rem 0;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .container {
        border-radius: 10px;
    }
    
    header {
        padding: 1.5rem;
    }
    
    .nav-bar {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .form-container, .content {
        padding: 1.8rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .payment-options {
        flex-direction: column;
        gap: 10px;
    }
}