/* css/styles.css - Complete shared styles */
@font-face {
    font-family: 'SilverBackFont';
    src: url('../assets/fonts/JejuHallasan-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SilverBackFont', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    flex-grow: 1;
}

.content-box {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin: 20px 0;
}

h1 {
    color: #2c3e50;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    font-size: 2.2rem;
}

h2 {
    color: #2c3e50;
    margin: 30px 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #ecf0f1;
    font-size: 1.5rem;
}

h3 {
    color: #34495e;
    margin: 20px 0 10px 0;
    font-size: 1.2rem;
}

p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: #444;
}

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

li {
    margin-bottom: 10px;
    color: #444;
    position: relative;
}

li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #1a5276;
    text-decoration: underline;
}

.btn {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    align-self: flex-start;
}

.btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.highlight-box {
    background-color: #fff9e6;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
}

.highlight-title {
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info {
    background-color: #f8fafc;
    border-left: 4px solid #3498db;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.contact-email {
    font-weight: 600;
    color: #2c3e50;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-email i {
    color: #3498db;
}

.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #777;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .content-box {
        padding: 25px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .content-box {
        padding: 20px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.2rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    p, li {
        font-size: 1rem;
    }
}