.outline {
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    padding: 5rem 0 2rem 0;
    background-color: #1b1b1b;
}

.outline-page {
    width: 80%;
    margin: 0 auto;
    color: #fff;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .outline-page{
        width: 100%;
        padding: 0 1rem;
    }
}

/* About Section Styles */
.about-section {
    max-width: 1400px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 0.6s ease-out;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #888;
    font-weight: 300;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.about-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}

.card-icon svg {
    width: 32px;
    height: 32px;
}

.warning-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.card-title-small {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #fff;
}

.card-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

.card-description strong {
    color: #667eea;
    font-weight: 600;
}

.card-description-small {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #aaa;
}

.link {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px dashed rgba(102, 126, 234, 0.5);
}

.link:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
}

.disclaimer-card {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.08) 0%, rgba(245, 87, 108, 0.05) 100%);
    border-color: rgba(240, 147, 251, 0.2);
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.disclaimer-header .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.disclaimer-header .card-icon svg {
    width: 28px;
    height: 28px;
}

.disclaimer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.disclaimer-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border-left: 3px solid #667eea;
    transition: all 0.3s ease;
}

.disclaimer-item:hover {
    background: rgba(255,255,255,0.05);
    transform: translateX(5px);
}

.item-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.item-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.item-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #aaa;
}

.contact-card {
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.contact-email {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 8px;
    color: #667eea;
    font-family: monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.about-footer {
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-text {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.footer-text-small {
    font-size: 0.8rem;
    color: #666;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.about-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.about-card:nth-child(1) { animation-delay: 0.1s; }
.about-card:nth-child(2) { animation-delay: 0.2s; }
.about-card:nth-child(3) { animation-delay: 0.3s; }
.about-card:nth-child(4) { animation-delay: 0.4s; }
.about-card:nth-child(5) { animation-delay: 0.5s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.4rem;
    }
    
    .card-description {
        font-size: 1rem;
    }
    
    .disclaimer-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .disclaimer-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .item-number {
        width: auto;
        text-align: left;
        font-size: 1.2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Styles */
.contact-section {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    text-align: center;
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-form {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

.form-group label .icon {
    width: 20px;
    height: 20px;
    color: #667eea;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control::placeholder {
    color: #666;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control:focus + label .icon,
.form-group label .icon {
    color: #667eea;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-actions {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

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

.btn-submit .icon {
    width: 22px;
    height: 22px;
}

/* Alert Styles */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInDown 0.5s ease;
}

.alert .icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.alert-success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(56, 142, 60, 0.1) 100%);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #81c784;
}

.alert-error {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.15) 0%, rgba(229, 57, 53, 0.1) 100%);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #e57373;
}

.alert-warning {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(251, 140, 0, 0.1) 100%);
    border: 1px solid rgba(255, 152, 0, 0.3);
    color: #ffb74d;
}

.alert-warning ul {
    margin: 0;
    padding-left: 1.5rem;
    list-style-type: disc;
}

/* Responsive adjustments for contact form */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .alert {
        flex-direction: column;
        text-align: left;
    }
}
