* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .about-section {
            margin-bottom: 25px;
        }

        .about-section h2 {
            color: #6e8efb;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .team-members {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }

        .team-member {
            flex: 1;
            min-width: 200px;
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
        }

        .team-member h3 {
            color: #6e8efb;
            margin-bottom: 10px;
        }

        .team-member .role {
            color: #777;
            font-style: italic;
            margin-bottom: 15px;
        }

.privacy-content {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .privacy-section {
            margin-bottom: 25px;
        }

        .privacy-section h2 {
            color: #6e8efb;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .privacy-highlight {
            background-color: #f9f9f9;
            border-left: 4px solid #6e8efb;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 4px 4px 0;
        }

        .privacy-list {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .privacy-list li {
            margin-bottom: 10px;
        }

.contact-content {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }

        .contact-method {
            flex: 1;
            min-width: 250px;
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
        }

        .contact-method h3 {
            color: #6e8efb;
            margin-bottom: 15px;
        }

        .faq-section {
            margin-top: 40px;
        }

        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }

        .faq-item h3 {
            color: #6e8efb;
            margin-bottom: 10px;
        }

header {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

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

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.text-inputs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.text-box {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.text-box h2 {
    margin-bottom: 15px;
    color: #444;
    font-size: 1.3rem;
}

textarea {
    width: 100%;
    height: 300px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px;
    resize: vertical;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

button {
    padding: 12px 25px;
    background: #6e8efb;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

button:hover {
    background: #5a7de4;
}

#clear-btn {
    background: #ff6b6b;
}

#clear-btn:hover {
    background: #ee5253;
}

.results {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.results h2 {
    margin-bottom: 15px;
    color: #444;
}

.result-container {
    display: flex;
    gap: 20px;
}

.result-box {
    flex: 1;
}

.result-box h3 {
    margin-bottom: 10px;
    color: #555;
    font-size: 1.1rem;
}

.result-text {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 200px;
    font-family: monospace;
    white-space: pre-wrap;
    background-color: #f9f9f9;
    overflow: auto;
    max-height: 400px;
}

.diff-added {
    background-color: #d4edda;
    text-decoration: underline;
}

.diff-removed {
    background-color: #f8d7da;
    text-decoration: line-through;
}

.diff-changed {
    background-color: #fff3cd;
}

footer {
    background: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

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

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

.footer-links a:hover {
    color: #6e8efb;
}

.info-content {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.info-section {
    margin-bottom: 40px;
}

.info-section h2 {
    color: #6e8efb;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.info-section h3 {
    color: #555;
    margin: 15px 0 10px;
    font-size: 1.2rem;
}

.info-section p, .info-section li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-section ol, .info-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.benefit-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #6e8efb;
}

.benefit-item h3 {
    color: #6e8efb;
    margin-bottom: 10px;
}

.start-section {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.start-section h2 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.start-section p {
    margin-bottom: 35px;
    color: #5a6c7d;
    font-size: 1.4rem;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#start-btn {
    padding: 20px 50px;
    border: none;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #3498db, #2980b9);
    color: white;
    border: 2px solid #2980b9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#start-btn:hover {
    background: linear-gradient(145deg, #2980b9, #2573a7);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#start-btn:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

#start-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

#start-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(30, 30);
        opacity: 0;
    }
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.btn-secondary:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}

.assessment-section {
    margin-bottom: 40px;
}

.progress-container {
    margin-bottom: 30px;
}

.progress-bar {
    height: 10px;
    background-color: #ecf0f1;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background-color: #3498db;
    width: 0%;
    transition: width 0.3s ease;
}

#progress-text {
    display: block;
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
}

.question-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.question-container h2 {
    margin-bottom: 25px;
    color: #2c3e50;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.option:hover {
    background-color: #f8f9fa;
    border-color: #3498db;
}

.option.selected {
    background-color: #e1f0fa;
    border-color: #3498db;
    font-weight: bold;
}

.assessment-controls {
    display: flex;
    justify-content: space-between;
    gap: 15px; 
}

.assessment-controls .btn-primary,
.assessment-controls .btn-secondary {
    flex: 1; 
    min-width: 120px; 
}

.results-section {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.result-summary {
    margin-bottom: 30px;
}

.career-matches {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.career-category {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.career-category h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.career-category ul {
    list-style-type: none;
    padding-left: 0;
}

.career-category li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.career-category li:last-child {
    border-bottom: none;
}

.result-actions {
    text-align: center;
    margin-top: 30px;
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .start-section {
        padding: 40px 20px;
    }
    
    .start-section h2 {
        font-size: 2.2rem;
    }
    
    .start-section p {
        font-size: 1.2rem;
    }
    
    #start-btn {
        padding: 16px 35px;
        font-size: 1.3rem;
    }
    
    .question-container {
        padding: 20px;
    }
    
    .options-container {
        gap: 8px;
    }
    
    .option {
        padding: 12px;
    }
    
    .assessment-controls {
        flex-direction: column;
        gap: 12px;
    }
    
    .assessment-controls .btn-primary,
    .assessment-controls .btn-secondary {
        width: 100%;
        margin: 0; 
        flex: none;
    }
}

@media (max-width: 480px) {
    .start-section h2 {
        font-size: 1.8rem;
    }
    
    .start-section p {
        font-size: 1.1rem;
    }
    
    #start-btn {
        padding: 14px 30px;
        font-size: 1.2rem;
    }
    
    .assessment-controls {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .info-section h2 {
        font-size: 1.4rem;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .text-inputs {
        flex-direction: column;
    }
    
    .result-container {
        flex-direction: column;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    header p {
        font-size: 1rem;
    }
    
    .controls {
        flex-direction: column;
        align-items: center;
    }
    
    button {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links a {
        margin: 5px 0;
    }
}
