/* =========================================================
   DramaCorp Support Centre
   Version 1.0
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Segoe UI,Arial,sans-serif;
    background:#f4f7fa;
    color:#333;
    line-height:1.6;

}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

header{

    background:#478e0d;
    color:white;
    padding:20px 0;
    box-shadow:0 2px 8px rgba(0,0,0,.15);

}

header h1{

    font-size:34px;
    font-weight:600;

}

header p{

    margin-top:5px;
    opacity:.9;

}

nav{

    margin-top:18px;

}

nav a{

    color:white;
    text-decoration:none;
    margin-right:30px;
    font-weight:600;

}

nav a:hover{

    text-decoration:underline;

}

.hero{

    padding:60px 0;
    text-align:center;

}

.hero h2{

    font-size:42px;
    margin-bottom:20px;

}

.hero p{

    font-size:20px;
    color:#666;

}

.cards{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:50px;
    margin-bottom:50px;

}

.card{

    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
    transition:.25s;

}

.card:hover{

    transform:translateY(-5px);

}

.card h3{

    color:#478e0d;
    margin-bottom:15px;

}

.card p{

    color:#555;
    margin-bottom:25px;

}

.button{

    display:inline-block;
    background:#478e0d;
    color:white;
    text-decoration:none;
    padding:12px 24px;
    border-radius:6px;
    font-weight:bold;

}

.button:hover{

    background:#087ea0;

}

.section{

    padding:50px 0;

}

.section h2{

    color:#478e0d;
    margin-bottom:25px;

}

table{

    width:100%;
    border-collapse:collapse;
    margin-top:20px;

}

table th{

    background:#478e0d;
    color:white;
    padding:12px;

}

table td{

    padding:12px;
    border-bottom:1px solid #ddd;

}

footer{

    margin-top:60px;
    background:#222;
    color:white;
    text-align:center;
    padding:30px;

}

footer p{

    opacity:.8;

}

details{

    background:white;
    margin-bottom:15px;
    border-radius:8px;
    padding:18px;
    box-shadow:0 1px 6px rgba(0,0,0,.08);

}

summary{

    cursor:pointer;
    font-weight:bold;
    color:#478e0d;
    font-size:18px;

}

details p{

    margin-top:15px;

}

img.guide{

    width:100%;
    max-width:900px;
    display:block;
    margin:30px auto;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,.15);

}

.notice{

    background:#fff8d8;
    border-left:5px solid orange;
    padding:20px;
    margin:30px 0;

}

.success{

    background:#e7f9ed;
    border-left:5px solid green;
    padding:20px;
    margin:30px 0;

}

@media(max-width:768px){

header h1{

    font-size:28px;

}

.hero h2{

    font-size:30px;

}

nav a{

    display:block;
    margin-bottom:10px;

}

}

.header-brand{

    display:flex;
    align-items:center;
    gap:20px;

}

.header-brand img{

    height:70px;

}

.header-brand h1{

    margin:0;

}

.header-brand p{

    margin-top:5px;

}