body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f6f7f8;
    color: #1e293b;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 50px;
    height: 50px;
    background-image: url('/images/pleance_cut.png');
    background-size: cover;
    background-position: center;
}

.site-name {
    font-weight: 700;
    font-size: 1.5rem;
    color: #245E8B;
}

.return-btn {
    padding: 12px 16px;
    background-color: #136DEC;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.return-btn:hover {
    background-color: #1a4666;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(36, 94, 139, 0.3);
}

.container {
    max-width: 900px;
    margin: 100px auto 50px;
    padding: 2rem;
    flex: 1;
}

.hero-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hero-card h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #245E8B;
    margin-bottom: 1rem;
}

.hero-card p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.term-item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.check {
    font-size: 1.5rem;
    color: #000;
}

.term-item p {
    margin: 0;
    font-size: 1rem;
}

footer {
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 2rem;
}

.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo .logo {
    width: 40px;
    height: 40px;
}

.footer-logo .site-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: #245E8B;
}

footer p {
    font-size: 0.875rem;
    color: #64748b;
}
