* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f0f2f5;
}

.navbar {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 24px; /* Adjust text size */
    font-weight: bold;
    color: #2196F3; /* Adjust color */
    text-decoration: none; /* Removes underline */
    display: inline-block;
    transition: color 0.3s ease; /* Smooth hover effect */
}

.logo:hover {
    color: #0d47a1; /* Change color on hover */
    text-decoration: none; /* Ensures underline doesn't appear on hover */
}


.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2196F3;
}

.main-container {
    flex: 1;
    padding: 2rem 0;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.drop-zone {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    background: white;
}

.drop-zone:hover,
.drop-zone.dragover {
    border-color: #2196F3;
    background: #e3f2fd;
}

.file-info {
    margin: 20px 0;
}

.input-group {
    margin: 15px 0;
    position: relative;
}

.input-label {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 0.9em;
}

input {
    width: 100%;
    padding: 12px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background: #f8f9fa;
}

button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
    width: 100%;
}

button:disabled {
    background: #90caf9;
    cursor: not-allowed;
}

button:hover:not(:disabled) {
    background: #1976d2;
}

.disclaimer {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    text-align: center;
}

.footer {
    background: #ffffff;
    border-top: 1px solid #eee;
    padding: 2rem 0;
    margin-top: auto;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2196F3;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}
.guidance-section {
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.info-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.info-box {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
  margin: 20px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.info-box h2 {
    color: #2196F3;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.steps {
    padding-left: 25px;
    line-height: 1.8;
}

.steps li {
    margin: 10px 0;
}

.formats-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.format-item {
    background: #e3f2fd;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9em;
}

.features {
    list-style-type: none;
    line-height: 1.8;
}

.features li::before {
    content: "✓";
    color: #4CAF50;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .formats-list {
        flex-direction: column;
    }
    
    .format-item {
        width: 100%;
        text-align: center;
    }
}

.info-box:hover {
    transform: translateY(-5px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .info-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .info-box {
        width: 100%;
        max-width: 100%;
    }
}



/* Existing styles for steps, formats-list, etc. remain same */