.legal-content {
    padding: 140px 0 50px;
    min-height: 70vh;
}
.legal-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 20px;
}
.legal-content h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #59621d;
    padding-top: 10px;
}
.legal-content h2 {
    color: #97d700;
    margin: 30px 0 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}
.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}
.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}
.update-date {
    text-align: center;
    font-style: italic;
    margin-bottom: 40px;
    color: #666;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
}
.legal-content a {
    color: #97d700;
    text-decoration: none;
    font-weight: 500;
}
.legal-content a:hover {
    text-decoration: underline;
}
.back-to-home {
    background-color: #97d700;
    color: white !important;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: 2px solid #97d700;
    text-align: center;
}
.back-to-home:hover {
    background-color: #7ab300;
    border-color: #7ab300;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.back-to-home i {
    margin-right: 8px;
}
body {
    scroll-padding-top: 100px;
}
.logo-left {
    transition: all 0.3s ease;
    cursor: pointer;
}
.logo-left:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}
.germination-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: visible;
}
.germination-stem {
    position: absolute;
    bottom: 100%;
    left: 80%;
    transform: translateX(-50%);
    width: 4px;
    height: 0;
    background-color: #97d700;
    border-radius: 2px;
    transition: height 0.5s ease;
}
.germination-leaf {
    position: absolute;
    bottom: 100%;
    left: 80%;
    transform: translateX(-50%);
    width: 12px;
    height: 0;
    background-color: #7ab300;
    border-radius: 50%;
    transition: all 0.5s ease;
}
.leaf-1 {
    transform: translateX(-50%) rotate(-30deg) !important;
    border-radius: 50% 0 50% 50% !important;
}
.leaf-2 {
    transform: translateX(-50%) rotate(30deg) !important;
    border-radius: 50% 50% 50% 0 !important;
}