/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    background: linear-gradient(90deg, #e6f4ec 0%, #e6f7f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #222;
    position: relative;
    padding: 80px 0 40px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3em;
    margin: 0 0 0.2em 0;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: 1px;
    color: #222;
}

.hero-title .highlight {
    color: #228B22;
}

.hero-description {
    font-size: 1.5em;
    margin: 0 0 1.2em 0;
    font-weight: 500;
    line-height: 1.2;
    color: #444;
}

/* Terms Section */
.terms-section {
    padding: 60px 0 80px 0;
    background: #fff;
}

.terms-title {
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: #228B22;
}

.terms-text {
    font-size: 1.1em;
    line-height: 1.7;
    color: #333;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    padding: 40px 32px;
    max-width: 900px;
    margin: 0 auto;
}

.terms-text p {
    margin-bottom: 1.2em;
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 2em;
    }
    .hero-description {
        font-size: 1.1em;
    }
    .terms-section {
        padding: 32px 0 40px 0;
    }
    .terms-text {
        padding: 24px 10px;
    }
}
