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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

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

/* Site Header */
.site-header {
    background-color: #537da3;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-section {
    flex-shrink: 0;
}

.logo {
    max-height: 60px;
    width: auto;
}

.header-text {
    flex: 1;
}

.header-text h1 {
    margin: 0 0 5px 0;
    color: white;
    font-size: 1.8em;
}

.tagline {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9em;
}

/* Site Footer */
.site-footer {
    background: white;
    padding: 30px 20px;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 1px solid #ddd;
}

.footer-content {
    color: #666;
    font-size: 0.9em;
}

.footer-content p {
    margin: 5px 0;
}

.footer-content a {
    color: #537da3;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        max-height: 50px;
    }
    
    .header-text h1 {
        font-size: 1.5em;
    }
}

/* Landing Page */
.landing-header {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.landing-header h1 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2em;
    color: #666;
}

.landing-main {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.landing-content h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.landing-text {
    margin-bottom: 30px;
}

.landing-text ul {
    padding-left: 10px;
    margin-left: 10px;
    list-style-position: outside;
}

.landing-text li {
    margin-bottom: 8px;
}

.benefits {
    margin: 30px 0;
}

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

.benefits ul {
    list-style-position: inside;
    margin-left: 20px;
}

.benefits li {
    margin-bottom: 10px;
    color: #555;
}

/* Assessment Page */
.assessment-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.progress-bar {
    width: 100%;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #537da3;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
    font-weight: 500;
}

.question-card {
    margin-top: 20px;
}

.question-text {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #2c3e50;
}

.options-form {
    margin-top: 20px;
}

.options {
    margin-bottom: 30px;
}

.option {
    display: block;
    padding: 15px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.option:hover {
    background: #e8f4f8;
    border-color: #537da3;
}

.option input[type="radio"] {
    margin-right: 10px;
}

.option input[type="radio"]:checked + span {
    font-weight: 600;
    color: #537da3;
}

.option:has(input[type="radio"]:checked) {
    background: #e8f4f8;
    border-color: #537da3;
}

.navigation-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Results Page */
.results-container {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.results-container h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.result-card {
    text-align: center;
    padding: 30px;
    background-color: #537da3;
    color: white;
    border-radius: 8px;
    margin-bottom: 30px;
}

.framework-name {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.result-description {
    font-size: 1.1em;
}

.scores-breakdown {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.scores-breakdown h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.score-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.score-label {
    font-weight: 600;
    color: #555;
}

.score-value {
    color: #537da3;
    font-weight: 600;
}

.email-capture {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.email-capture h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.email-form {
    margin-top: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* Thank You Page */
.thankyou-container {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.thankyou-container h1 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.thankyou-message {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
}

.download-section {
    margin: 30px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.next-steps {
    margin: 30px 0;
    text-align: left;
}

.next-steps h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.next-steps ul {
    list-style-position: inside;
    margin-left: 20px;
}

.next-steps li {
    margin-bottom: 10px;
    color: #555;
}

.cta-section {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
}

.btn-primary {
    background-color: #537da3;
    color: white;
}

.btn-primary:hover {
    background-color: #45688a;
}

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

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

.btn-large {
    padding: 15px 30px;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .landing-header h1 {
        font-size: 2em;
    }
    
    .framework-name {
        font-size: 2em;
    }
    
    .navigation-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

