:root {
    --primary-color: #1565d8;
    --secondary-color: #70b3b1;
    --dark-bg: #1a1a1a;
    --light-text: #ffffff;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
}

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

.navbar {
    padding: 20px 0;
    margin-bottom: 40px;
}

.logo img {
    height: 40px;
}

.hero-section {
    margin-bottom: 60px;
}

.investment-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card.highlight {
    background: var(--primary-color);
}

.stat-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.stat-card .value {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-card .date,
.stat-card .period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.left-panel h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.investment-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
}

.options-list {
    list-style: none;
}

.options-list li {
    margin-bottom: 25px;
}

.option-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.form-container h2 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    color: var(--light-text);
}

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

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 5px;
}

button[type="submit"] {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #1976d2;
}

/* Success Section Styling */
.success-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-top: 30px;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.success-container h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.success-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.next-steps {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 25px 0;
    text-align: left;
}

.next-steps h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
}

.contact-info {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Right Panel Benefits */
.additional-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    height: fit-content;
}

.additional-info h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: transform 0.2s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item .icon {
    font-size: 1.5rem;
    margin-top: 2px;
}

.benefit-item h4 {
    margin-bottom: 8px;
    color: var(--light-text);
    font-size: 1.1rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.amount-range {
    background: var(--primary-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    text-align: center;
}

.projection-calculator {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.projection-calculator h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.projection-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.projection-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.projection-item.total {
    border-top: 2px solid var(--primary-color);
    border-bottom: none;
    padding-top: 15px;
    margin-top: 10px;
    font-weight: bold;
    font-size: 1.1rem;
}

.projection-item .label {
    color: rgba(255, 255, 255, 0.8);
}

.projection-item .value {
    color: var(--light-text);
    font-weight: 600;
}

.projection-item .value.projected {
    color: var(--primary-color);
}

.projection-note {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.projection-note small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Requirements and Investor Sections */
.requirements-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.requirements-info h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.requirement-item h4 {
    color: var(--light-text);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.requirement-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.investor-section {
    background: rgba(112, 179, 177, 0.1);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-top: 30px;
    border-left: 4px solid var(--secondary-color);
}

.investor-section h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.investor-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.investor-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.investor-link:hover {
    text-decoration: underline;
}

.login-section {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.login-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
}

.login-container h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.login-description {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.login-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-option {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.login-option:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.login-option h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.login-option p {
    color: rgba(255, 255, 255, 0.7);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-login {
    background: var(--primary-color);
    color: var(--light-text);
}

.btn-login:hover {
    background: #1976d2;
}

.btn-signup {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-signup:hover {
    background: var(--primary-color);
    color: var(--light-text);
}

.benefits {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
}

.benefits h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefits ul {
    list-style: none;
}

.benefits li {
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 968px) {
    .content-section {
        grid-template-columns: 1fr;
    }
    
    .stat-card .value {
        font-size: 1.5rem;
    }
    
    .login-options {
        flex-direction: column;
    }
    
    .login-container {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 15px;
    }
    
    .form-container {
        padding: 25px;
    }
    
    .success-section {
        padding: 25px;
    }
    
    .success-container h2 {
        font-size: 1.8rem;
    }
} 
