/* Marathon Buddy - Shared Styles */

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

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.7;
    color: #1E1B18;
    background-color: #F6F1EA;
    min-height: 100vh;
}

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

/* Header */
.page-header {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(30, 27, 24, 0.06);
    text-align: center;
}

.logo-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(30, 27, 24, 0.08);
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #1E1B18;
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 16px;
    color: #3A332E;
    font-weight: 500;
}

/* Content */
.content-card {
    background: white;
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 2px 12px rgba(30, 27, 24, 0.06);
    margin-bottom: 24px;
}

h2 {
    font-family: 'Sora', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #1E1B18;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #CE6E3D;
}

h2:first-child {
    margin-top: 0;
}

h3 {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1E1B18;
    margin-top: 28px;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #1E1B18;
}

ul, ol {
    margin-bottom: 20px;
    padding-left: 28px;
}

li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.7;
    color: #1E1B18;
}

a {
    color: #CE6E3D;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

strong {
    font-weight: 600;
    color: #1E1B18;
}

/* Special Boxes */
.notice-box {
    background: #FFF9F5;
    border-left: 4px solid #CE6E3D;
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
}

.notice-box h3 {
    margin-top: 0;
    color: #CE6E3D;
}

.contact-box {
    background: linear-gradient(135deg, #CE6E3D 0%, #B5522C 100%);
    color: white;
    padding: 32px;
    border-radius: 16px;
    margin: 32px 0;
    text-align: center;
}

.contact-box h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 12px;
}

.contact-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.contact-box a {
    color: white;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s;
    text-decoration: none;
}

.contact-box a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    text-decoration: none;
}

.info-box {
    background: #E9EEF0;
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
}

/* Last Updated */
.last-updated {
    color: #3A332E;
    font-style: italic;
    font-size: 14px;
    margin-bottom: 32px;
    text-align: center;
}

/* Footer */
.page-footer {
    background: #203038;
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 48px;
}

.page-footer p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.page-footer a {
    color: white;
    font-weight: 600;
}

.page-footer a:hover {
    color: #D6E04B;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 20px 16px;
    }
    
    .page-header {
        padding: 32px 24px;
    }
    
    .content-card {
        padding: 32px 24px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 22px;
    }
    
    h3 {
        font-size: 16px;
    }
}
