
:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 56px;
}

.navbar {
    background-color: var(--primary-color);
}

.nav-link {
    color: rgba(255,255,255,0.8) !important;
}

.nav-link:hover {
    color: white !important;
}

.hero-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.step-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.step-number {
    background-color: var(--accent-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
}

.info-box {
    background-color: #e8f4f8;
    border-left: 4px solid var(--accent-color);
    padding: 1rem;
    margin: 1rem 0;
}

.step-image {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    margin: 1rem 0;
}

.requirement-list li {
    margin-bottom: 0.5rem;
}

.image-preview {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    background-color: white;
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
