:root {
    --primary-color: #FD6312;
    --secondary-color: #3FA9F5;
    --bg-color: #F4F9FD;
    --container-bg: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;
    --border-color: #e2e8f0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--bg-color);
    padding: 20px;
}

/* Main Container Styling */
.container {
    max-width: 800px;
    margin: 40px auto;
    background-color: var(--container-bg);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-top: 6px solid var(--primary-color);
}

/* Typography */
h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

h2 {
    color: var(--text-main);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

h3 {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.hero-subtext {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff !important;
    /* Force white text */
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(253, 99, 18, 0.3);
    transition: transform 0.2s, background-color 0.2s;
}

.cta-button:hover {
    background-color: #e0550e;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.feature-card {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* Contact Section */
address {
    font-style: normal;
    background: #f9fafb;
    padding: 20px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 4px 4px 0;
    color: var(--text-muted);
    margin-top: 10px;
}

address strong {
    color: var(--text-main);
}

/* Footer */
.doc-footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.9rem;
    color: #9ca3af;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    margin: 0 10px;
    color: var(--text-muted);
    font-weight: normal;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Scroll To Top Button */
#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    /* Circular shape */
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 10px rgba(253, 99, 18, 0.4);
    transition: transform 0.3s ease, background-color 0.3s;
}

#scrollToTopBtn:hover {
    background-color: #e0550e;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .container {
        margin: 10px auto;
        padding: 25px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}