body {
    line-height: 1.6;
    color: #333;
    margin: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}
.hero {
    background: linear-gradient(135deg, #362cb9 0%, #5e52d4 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.hero p {
    font-size: 1.2em;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.content-section {
    background: white;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.content-section h2 {
    color: #362cb9;
    margin-bottom: 20px;
    font-size: 1.8em;
    border-bottom: 3px solid #362cb9;
    padding-bottom: 10px;
}
.content-section h3 {
    color: #5e52d4;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3em;
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}
.feature-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #362cb9;
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(54, 44, 185, 0.15);
}
.feature-card h4 {
    color: #362cb9;
    margin-bottom: 10px;
    font-size: 1.1em;
}
.feature-card p {
    color: #555;
    font-size: 0.95em;
}
.cta-buttons {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1em;
    text-align: center;
}
.btn-primary {
    background: #362cb9;
    color: white;
    border: 2px solid #362cb9;
}
.btn-primary:hover {
    background: #2a2292;
    border-color: #2a2292;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(54, 44, 185, 0.3);
}
.btn-secondary {
    background: white;
    color: #362cb9;
    border: 2px solid #362cb9;
}
.btn-secondary:hover {
    background: #362cb9;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(54, 44, 185, 0.3);
}
.citations {
    background: #fff9e6;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid #ffc107;
}
.citation-item {
    margin: 15px 0;
    padding: 15px;
    background: white;
    border-radius: 6px;
    font-size: 0.9em;
    line-height: 1.7;
}
.citation-item strong {
    color: #362cb9;
    display: block;
    margin-bottom: 5px;
}
.contact-box {
    background: linear-gradient(135deg, #362cb9 0%, #5e52d4 100%);
    color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin: 30px 0;
}
.contact-box h3 {
    color: white;
    margin-bottom: 15px;
}
.contact-box a {
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
}
.contact-box a:hover {
    text-decoration: underline;
}
.browser-notice {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #2196f3;
    margin: 20px 0;
    font-size: 0.95em;
}
ul.feature-list {
    list-style: none;
    margin: 15px 0;
}
ul.feature-list li {
    padding: 8px 0 8px 25px;
    position: relative;
}
ul.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #362cb9;
    font-weight: bold;
}
.icon {
    display: inline-block;
    margin-right: 8px;
}