/* tools-style.css */

/* Reset and Foundations */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Forces smooth scroll movement from the footer links */
html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f8f9fa;
    padding: 40px 20px;
}

.tools-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Navigation Link Element styling */
.back-home-wrapper {
    margin-bottom: 25px;
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #495057;
    background-color: #e9ecef;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-back-home:hover {
    background-color: #dee2e6;
    color: #212529;
}

h1 {
    font-size: 2.5rem;
    color: #111111;
    margin-bottom: 10px;
    font-weight: 700;
}

.suite-intro {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 40px;
}

/* Dedicated Content Section Blocks with Scroll Padding */
.tool-section {
    margin-bottom: 45px;
    padding-top: 25px; /* Creates space above headings after an anchor scroll */
    border-top: 1px solid #eeeeee;
}

.section-header h2 {
    font-size: 1.6rem;
    color: #111111;
    margin-bottom: 15px;
    font-weight: 600;
}

.tool-text {
    font-size: 1.05rem;
    color: #495057;
    margin-bottom: 15px;
    text-align: justify;
}

strong {
    color: #111111;
}

@media (max-width: 600px) {
    body { padding: 20px 10px; }
    .tools-container { padding: 20px; }
    h1 { font-size: 2rem; }
    .section-header h2 { font-size: 1.35rem; }
    .tool-text { text-align: left; }
}
