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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #1a5f7a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3d4f;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Navigation - Minimal Style */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.nav-brand a {
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    color: #4a4a4a;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1a5f7a;
}

/* Editorial Container - Narrow Centered Layout */
.editorial-container {
    width: 100%;
    max-width: 100%;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section - Editorial Style */
.editorial-hero {
    padding: 4rem 0 3rem;
    background-color: #fafafa;
}

.hero-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.editorial-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2.5rem;
}

.hero-img {
    width: 100%;
    margin-top: 2rem;
    border-radius: 4px;
}

/* Editorial Sections */
.editorial-section {
    padding: 4rem 0;
}

.editorial-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.editorial-section h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 2rem 0 1rem;
    font-weight: 600;
    color: #2c2c2c;
}

.editorial-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

/* Drop Cap */
.drop-cap::first-letter {
    font-size: 4rem;
    line-height: 0.9;
    float: left;
    margin: 0.1em 0.15em 0 0;
    color: #1a5f7a;
    font-weight: 700;
}

/* Background Variations */
.bg-light {
    background-color: #f9f9f9;
}

.bg-accent {
    background-color: #f0f6f8;
}

.bg-dark {
    background-color: #2c3e50;
    color: #ffffff;
}

.bg-dark h2,
.bg-dark h3,
.bg-dark p {
    color: #ffffff;
}

/* Inline Images */
.inline-img {
    width: 100%;
    margin: 2.5rem 0;
    border-radius: 4px;
}

/* Lists */
.editorial-list {
    list-style-position: outside;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.editorial-list li {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: #3a3a3a;
}

/* Blockquote */
.editorial-quote {
    border-left: 4px solid #1a5f7a;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    background-color: #f9f9f9;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.7;
}

.editorial-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
    font-family: 'Arial', sans-serif;
}

/* Inline Stats */
.stats-inline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 4px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a5f7a;
    font-family: 'Arial', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Insight Box */
.insight-box {
    background-color: #fff8e1;
    border-left: 5px solid #ffc107;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.insight-box h3 {
    margin-top: 0;
    color: #1a1a1a;
}

.insight-box p {
    margin-bottom: 1rem;
}

.insight-box p:last-child {
    margin-bottom: 0;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #fafafa;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    font-size: 0.95rem;
    color: #888;
    font-family: 'Arial', sans-serif;
}

/* Pillar Grid */
.pillar-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.pillar-item {
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.pillar-item h3 {
    color: #ffffff;
    margin-top: 0;
}

.pillar-item p {
    color: #e8e8e8;
}

/* Services Section */
.services-reveal {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-card.featured {
    border: 2px solid #1a5f7a;
    background-color: #f0f6f8;
}

.badge-popular {
    display: inline-block;
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background-color: #fafafa;
    border-radius: 4px;
}

.service-duration {
    font-size: 0.95rem;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5f7a;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #1a5f7a;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Arial', sans-serif;
}

.btn-select-service:hover {
    background-color: #0d3d4f;
    transform: translateY(-2px);
}

/* Inline CTAs */
.inline-cta {
    margin: 2.5rem 0;
    text-align: center;
}

.cta-link {
    font-size: 1.15rem;
    color: #1a5f7a;
    font-weight: 600;
    border-bottom: 2px solid #1a5f7a;
    padding-bottom: 0.2rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.cta-link:hover {
    color: #0d3d4f;
    border-color: #0d3d4f;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5f7a;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Arial', sans-serif;
}

.cta-button:hover {
    background-color: #0d3d4f;
    transform: translateY(-2px);
    color: #ffffff;
}

.cta-button.primary {
    background-color: #2a7a9e;
}

.cta-button.primary:hover {
    background-color: #1a5f7a;
}

.cta-button.large {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
}

/* Form Section */
.form-section {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

.form-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.editorial-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5f7a;
}

.form-consent {
    margin: 2rem 0;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #4a4a4a;
    cursor: pointer;
}

.form-consent input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background-color: #1a5f7a;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Arial', sans-serif;
}

.btn-submit:hover {
    background-color: #0d3d4f;
    transform: translateY(-2px);
}

/* Urgency Section */
.urgency-section {
    background-color: #fff3cd;
    padding: 3rem 0;
}

.urgency-box {
    background-color: #ffffff;
    border: 2px solid #ffc107;
    border-radius: 6px;
    padding: 2.5rem;
}

.urgency-box h3 {
    margin-top: 0;
    color: #1a1a1a;
    font-size: 1.75rem;
}

.urgency-box p {
    color: #3a3a3a;
}

.urgency-box strong {
    color: #d32f2f;
    font-weight: 700;
}

/* Final CTA Section */
.final-cta {
    text-align: center;
    padding: 5rem 0;
    background-color: #ffffff;
}

.final-cta h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.final-cta .cta-button {
    margin-top: 2rem;
}

/* Footer */
.site-footer {
    background-color: #2c2c2c;
    color: #e8e8e8;
    padding: 3rem 5% 1.5rem;
    font-family: 'Arial', sans-serif;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b8b8b8;
}

.footer-col a {
    display: block;
    color: #b8b8b8;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    padding: 1rem 2rem;
    background-color: #d32f2f;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.sticky-btn:hover {
    background-color: #b71c1c;
    transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.cookie-content a {
    color: #4fc3f7;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-cookie.accept {
    background-color: #4caf50;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #388e3c;
}

.btn-cookie.reject {
    background-color: #757575;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #616161;
}

/* Page Container (for non-editorial pages) */
.page-container {
    min-height: 60vh;
}

.page-header {
    padding: 4rem 5% 2rem;
    background-color: #fafafa;
    border-bottom: 1px solid #e8e8e8;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.page-lead {
    font-size: 1.25rem;
    color: #555;
    max-width: 1200px;
    margin: 0 auto;
}

.page-meta {
    font-size: 0.95rem;
    color: #888;
    font-family: 'Arial', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

.page-section {
    padding: 3rem 5%;
}

.page-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.page-section h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2c2c2c;
}

.page-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.page-section ul {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.page-section li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: #3a3a3a;
}

.page-img {
    width: 100%;
    max-width: 800px;
    margin: 2rem 0;
    border-radius: 4px;
}

.cta-section {
    background-color: #f0f6f8;
    padding: 4rem 5%;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

/* Services Page */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detailed {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.service-detailed.featured-service {
    border: 2px solid #1a5f7a;
}

.service-detailed.premium-service {
    border: 2px solid #d4af37;
    background: linear-gradient(to bottom, #fffef7, #ffffff);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: #fafafa;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    margin: 0;
    font-size: 1.75rem;
    color: #1a1a1a;
}

.service-price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5f7a;
    font-family: 'Arial', sans-serif;
}

.service-body {
    padding: 2rem;
}

.service-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-body h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2c2c2c;
}

.service-body ul {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-body li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    color: #3a3a3a;
}

.service-body li.sub-item {
    margin-left: 1.5rem;
    list-style-type: circle;
}

.service-body .cta-button {
    margin-top: 2rem;
}

.cta-button.premium {
    background: linear-gradient(135deg, #d4af37, #f9e79f);
    color: #1a1a1a;
}

.cta-button.premium:hover {
    background: linear-gradient(135deg, #b8941f, #d4af37);
}

/* Contact Page */
.contact-section {
    padding: 3rem 5%;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info,
.contact-message {
    flex: 1;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-note {
    font-size: 0.95rem;
    color: #888;
    margin-top: 0.5rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Thanks Page */
.thanks-page {
    padding: 4rem 5%;
    min-height: 70vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    color: #4caf50;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.thanks-message {
    text-align: left;
    margin: 2rem 0;
}

.thanks-message p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.thanks-next-steps {
    font-weight: 700;
    margin-top: 2rem;
}

.thanks-steps {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.thanks-steps li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.thanks-note {
    background-color: #e3f2fd;
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid #2196f3;
    font-size: 1rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2.5rem 0;
    align-items: center;
}

.thanks-additional {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 6px;
    margin-top: 3rem;
    text-align: left;
}

.thanks-additional h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.thanks-additional p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.thanks-additional ul {
    margin-left: 1.5rem;
}

.thanks-additional li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    color: #3a3a3a;
}

/* Legal Pages */
.legal-page {
    background-color: #fafafa;
}

.legal-content {
    padding: 3rem 5%;
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
    padding-top: 1.5rem;
    border-top: 1px solid #e8e8e8;
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #3a3a3a;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: 'Arial', sans-serif;
}

.cookies-table thead {
    background-color: #f0f0f0;
}

.cookies-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #d0d0d0;
    font-size: 0.95rem;
}

.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid #e8e8e8;
    font-size: 0.95rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .editorial-hero h1 {
        font-size: 3rem;
    }

    .stats-inline {
        flex-direction: row;
        justify-content: space-around;
    }

    .pillar-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .pillar-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }

    .contact-grid {
        flex-direction: row;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .editorial-hero h1 {
        font-size: 3.5rem;
    }

    .pillar-item {
        flex: 1 1 calc(33.333% - 1.333rem);
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}