/* Reset และ Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sarabun', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    padding: 2rem 0;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #dc143c;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.title-section h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

.year-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

/* Navigation Styles */
.nav-bar {
    background: #8b0000;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.nav-item {
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav-item:hover::before {
    left: 100%;
}

.nav-item:hover,
.nav-item.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05) 0%, rgba(139, 0, 0, 0.05) 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.8rem;
    color: #dc143c;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero h3 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Assessment Status Styles */
.assessment-status {
    margin: 2rem 0;
}

.status-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.1);
    border: 2px solid rgba(220, 20, 60, 0.1);
    display: inline-block;
    text-align: center;
    max-width: 500px;
}

.status-card h3 {
    color: #dc143c;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.status-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.status-badge {
    background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.score-display {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.1);
    display: inline-block;
    margin: 2rem 0;
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.score-display h3 {
    color: #dc143c;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.score-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
}

.score-content {
    text-align: center;
    color: white;
}

.score-number {
    font-size: 2rem;
    font-weight: bold;
}

.score-percent {
    font-size: 1.2rem;
}

.score-grade {
    text-align: center;
}

.grade {
    font-size: 3rem;
    font-weight: bold;
    color: #dc143c;
    display: block;
}

.score-grade p {
    color: #666;
    margin: 0;
    font-size: 1.1rem;
}

.score-rank {
    margin-top: 0.75rem !important;
    font-size: 1rem !important;
    font-weight: 600;
    color: #8b0000 !important;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #dc143c;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.feature-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(220, 20, 60, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc143c, #8b0000);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 20, 60, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 2rem;
    color: #dc143c;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.weight {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

/* Indicators Section */
.indicators {
    padding: 4rem 0;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
}

.indicators h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #dc143c;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.indicator-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #dc143c;
}

.indicator-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.15);
}

.indicator-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.indicator-content h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.indicator-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Quick Links */
.quick-links {
    padding: 4rem 0;
    background: white;
}

.quick-links h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #dc143c;
    margin-bottom: 3rem;
    font-weight: 700;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.link-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    border: 2px solid rgba(220, 20, 60, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc143c, #8b0000);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.link-card:hover::before {
    transform: scaleX(1);
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 20, 60, 0.15);
}

.link-card h3 {
    color: #dc143c;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.link-card p {
    color: #666;
    margin: 0;
}

/* ITAS System Section */
.itas-system {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.itas-system h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #dc143c;
    margin-bottom: 3rem;
    font-weight: 700;
}

.itas-content {
    max-width: 1000px;
    margin: 0 auto;
}

.itas-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.itas-intro h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.itas-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: left;
}

.itas-components {
    margin-bottom: 3rem;
}

.itas-components h3 {
    font-size: 1.8rem;
    color: #dc143c;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.component-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #dc143c;
    transition: all 0.3s ease;
}

.component-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.15);
}

.component-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.component-card h4 {
    color: #dc143c;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.component-card p {
    color: #666;
    line-height: 1.6;
}

.itas-benefits h3 {
    font-size: 1.8rem;
    color: #dc143c;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.15);
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.itas-conclusion {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(220, 20, 60, 0.1);
}

.itas-conclusion p {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    line-height: 1.8;
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* ITA Definition Styles */
.ita-definition {
    padding: 4rem 0;
    background: white;
}

.ita-definition h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #dc143c;
    margin-bottom: 2rem;
    font-weight: 700;
}

.definition-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #dc143c;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.definition-card h3 {
    color: #dc143c;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.definition-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

/* Assessment Components */
.assessment-components {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.assessment-components h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #dc143c;
    margin-bottom: 3rem;
    font-weight: 700;
}

.component-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.component-header .component-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.component-header h3 {
    font-size: 2rem;
    color: #dc143c;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.component-header h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.component-details {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.weight-badge {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.indicators {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Ten Indicators */
.ten-indicators {
    padding: 4rem 0;
    background: white;
}

.ten-indicators h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #dc143c;
    margin-bottom: 3rem;
    font-weight: 700;
}

.indicator-category {
    margin-bottom: 3rem;
}

.indicator-category h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border-left: 4px solid #dc143c;
}

.indicators-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ITA Importance */
.ita-importance {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.ita-importance h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #dc143c;
    margin-bottom: 3rem;
    font-weight: 700;
}

.importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.importance-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #dc143c;
}

.importance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.15);
}

.importance-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.importance-card h3 {
    color: #dc143c;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.importance-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Full Page Styles */
.contact-full {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-layout {
    max-width: 1000px;
    margin: 0 auto;
}

.org-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #dc143c;
}

.org-header {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.org-logo .logo-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.org-details h2 {
    color: #dc143c;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.org-details p {
    color: #666;
    margin-bottom: 0.3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #dc143c;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.15);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-card-icon {
    font-size: 1.5rem;
}

.contact-card h3 {
    color: #dc143c;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-card-content p {
    color: #333;
    margin: 0;
    line-height: 1.6;
}

.contact-card-content a {
    color: #dc143c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: #8b0000;
    text-decoration: underline;
}

.location-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Map Section */
.map-section {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-section h3 {
    color: #dc143c;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
}

.map-embed {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.map-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.map-button {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.map-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

/* Contact Form */
.contact-form-section {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-section h3 {
    color: #dc143c;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc143c;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.submit-btn {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.reset-btn {
    background: #6c757d;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Office Hours */
.office-hours {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.office-hours h3 {
    color: #dc143c;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.hours-item.special {
    border-left-color: #ffc107;
}

.hours-item .day {
    font-weight: 600;
    color: #333;
}

.hours-item .time {
    color: #666;
}

/* Data Disclosure Styles */
.assessment-overview {
    padding: 3rem 0;
    background: white;
}

.overview-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.overview-header h2 {
    font-size: 2.2rem;
    color: #dc143c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.overview-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.sub-indicator {
    padding: 3rem 0;
    background: white;
}

.sub-indicator-alt {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sub-indicator-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sub-indicator-header h2 {
    font-size: 2rem;
    color: #dc143c;
    font-weight: 700;
    margin-bottom: 1rem;
}

.data-categories {
    max-width: 1000px;
    margin: 0 auto;
}

.data-category {
    background: white;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid rgba(220, 20, 60, 0.1);
}

.category-header {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.category-header:hover {
    background: linear-gradient(135deg, #b8112d 0%, #7a0000 100%);
}

.category-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.toggle-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

.category-content {
    display: none;
    padding: 2rem;
}

.data-category.active .category-content {
    display: block;
}

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

.data-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #dc143c;
    transition: all 0.3s ease;
    display: flex;
    gap: 1rem;
}

.data-item.full-width {
    grid-column: 1 / -1;
}

.data-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.1);
}

.data-number {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.data-content h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.data-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.data-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.data-link {
    background: white;
    color: #dc143c;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #dc143c;
    transition: all 0.3s ease;
}

.data-link:hover {
    background: #dc143c;
    color: white;
    transform: translateY(-1px);
}

/* Download All Section */
.download-all {
    padding: 3rem 0;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
}

.download-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.download-content h3 {
    color: #dc143c;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.download-content p {
    color: #666;
    margin: 0;
}

.download-actions {
    display: flex;
    gap: 1rem;
}

.download-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.download-btn.primary {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
}

.download-btn.secondary {
    background: white;
    color: #dc143c;
    border-color: #dc143c;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.download-btn.secondary:hover {
    background: #dc143c;
    color: white;
}

/* ITAS System Page Styles */
.itas-intro-section {
    padding: 4rem 0;
    background: white;
}

.itas-intro-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #dc143c;
    margin-bottom: 3rem;
    font-weight: 700;
}

.intro-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-text .highlight-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.system-diagram {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
}

.system-node {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.system-node.central {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.system-node:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.15);
}

/* Timeline Components */
.itas-components-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.itas-components-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #dc143c;
    margin-bottom: 3rem;
    font-weight: 700;
}

.components-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #dc143c;
}

.timeline-number {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    color: #dc143c;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Benefits Showcase */
.itas-benefits-section {
    padding: 4rem 0;
    background: white;
}

.itas-benefits-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #dc143c;
    margin-bottom: 3rem;
    font-weight: 700;
}

.benefits-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.main-benefit {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.main-benefit h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.main-benefit p {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
}

.benefit-icon.large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid #dc143c;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.15);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
}

.benefit-card h4 {
    color: #dc143c;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Process Flow */
.itas-process-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.itas-process-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #dc143c;
    margin-bottom: 3rem;
    font-weight: 700;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #dc143c;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.15);
}

.step-number {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-content h4 {
    color: #dc143c;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.process-arrow {
    font-size: 2rem;
    color: #dc143c;
    font-weight: bold;
}

/* Impact Grid */
.itas-impact-section {
    padding: 4rem 0;
    background: white;
}

.itas-impact-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #dc143c;
    margin-bottom: 3rem;
    font-weight: 700;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.impact-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #dc143c;
    transition: all 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.15);
}

.impact-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.impact-item h3 {
    color: #dc143c;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.impact-item ul {
    list-style: none;
    padding: 0;
}

.impact-item li {
    color: #666;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.impact-item li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Conclusion Section */
.itas-conclusion-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
}

.conclusion-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.conclusion-content {
    flex: 2;
}

.conclusion-content h2 {
    color: #dc143c;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.conclusion-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
}

.conclusion-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn.primary {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
}

.btn.secondary {
    background: white;
    color: #dc143c;
    border-color: #dc143c;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.btn.secondary:hover {
    background: #dc143c;
    color: white;
}

.conclusion-visual {
    flex: 1;
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #333 0%, #222 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #dc143c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #dc143c;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .title-section h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }

    .hero h3 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .score-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-item {
        text-align: center;
    }
    
    .features-grid,
    .indicators-grid,
    .links-grid,
    .components-grid,
    .data-grid {
        grid-template-columns: 1fr;
    }
    
    .indicator-item {
        flex-direction: column;
        text-align: center;
    }

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

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    /* Contact page responsive */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .org-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .download-card {
        flex-direction: column;
        text-align: center;
    }

    .download-actions {
        flex-direction: column;
        width: 100%;
    }

    .map-actions {
        flex-direction: column;
    }

    /* Data disclosure responsive */
    .data-item {
        flex-direction: column;
        text-align: center;
    }

    .data-actions {
        justify-content: center;
    }

    /* ITAS System responsive */
    .intro-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .system-diagram {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .process-flow {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .conclusion-card {
        flex-direction: column;
        text-align: center;
    }

    .conclusion-actions {
        justify-content: center;
    }

    /* About ITA responsive */
    .importance-grid {
        grid-template-columns: 1fr;
    }

    .indicators-group {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .title-section h1 {
        font-size: 1.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }

    .hero h3 {
        font-size: 1.5rem;
    }
    
    .features h2,
    .indicators h2,
    .quick-links h2,
    .itas-system h2,
    .contact h2,
    .page-hero h1 {
        font-size: 2rem;
    }

    .status-card {
        padding: 1.5rem;
    }

    .component-card {
        padding: 1.5rem;
    }

    .itas-intro h3,
    .itas-components h3,
    .itas-benefits h3 {
        font-size: 1.5rem;
    }

    /* Contact form responsive */
    .contact-card {
        padding: 1.5rem;
    }

    .map-embed {
        height: 300px;
    }

    /* Data disclosure responsive */
    .category-header {
        padding: 1rem;
    }

    .data-item {
        padding: 1rem;
        gap: 0.5rem;
    }

    .data-content h4 {
        font-size: 1rem;
    }

    .data-actions {
        flex-direction: column;
        gap: 0.3rem;
    }

    /* ITAS responsive */
    .intro-card {
        padding: 2rem;
    }

    .timeline-item {
        padding: 1.5rem;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .process-step {
        padding: 1.5rem;
        min-width: auto;
    }

    .impact-item {
        padding: 2rem;
    }

    .conclusion-card {
        padding: 2rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    /* Form responsive */
    .submit-btn,
    .reset-btn {
        width: 100%;
    }

    /* Loading responsive */
    .loading-logo {
        font-size: 3rem !important;
    }

    .loading-text {
        font-size: 1rem !important;
    }

    .loading-org {
        font-size: 0.9rem !important;
    }
}