
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1a4d2e 0%, #0d2818 50%, #1a4d2e 100%);
    min-height: 100vh;
    color: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.header {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(144, 238, 144, 0.6);
    padding-bottom: 10px;
    position: relative;
}

h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin: 15px 0 5px 0;
}

.styledFont {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    margin: 10px 0;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border-left: 4px solid rgba(144, 238, 144, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transition: all 0.3s ease;
}

/* Font Weight Styles */
.normal {
    font-weight: normal;
    border-left-color: rgba(144, 238, 144, 0.7);
}

.bold {
    font-weight: bold;
    border-left-color: rgba(144, 238, 144, 0.7);
}

/* Font Style Styles */
.italic {
    font-style: italic;
    border-left-color: rgba(144, 238, 144, 0.7);
}

/* Letter Spacing Styles */
.wide {
    letter-spacing: 10px;
    border-left-color: rgba(144, 238, 144, 0.7);
}

.narrow {
    letter-spacing: -1.5px;
    border-left-color: rgba(144, 238, 144, 0.7);
}

/* Text Decoration Styles */
.underline {
    text-decoration: underline;
    text-decoration-color: rgba(144, 238, 144, 0.8);
    text-decoration-thickness: 2px;
    border-left-color: rgba(144, 238, 144, 0.7);
}

.line-through {
    text-decoration: line-through;
    text-decoration-color: rgba(144, 238, 144, 0.7);
    text-decoration-thickness: 2px;
    border-left-color: rgba(144, 238, 144, 0.7);
}

.overline {
    text-decoration: overline;
    text-decoration-color: rgba(144, 238, 144, 0.7);
    text-decoration-thickness: 2px;
    border-left-color: rgba(144, 238, 144, 0.7);
}

/* Text Transform Styles */
.uppercase {
    text-transform: uppercase;
    border-left-color: rgba(50, 205, 50, 0.7);
}

.lowercase {
    text-transform: lowercase;
    border-left-color: rgba(144, 238, 144, 0.7);
}

.capitalize {
    text-transform: capitalize;
    border-left-color: rgba(152, 251, 152, 0.7);
}

.styledFont:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: rgba(144, 238, 144, 1);
    transform: translateX(3px);
}