:root {
    --z71-primary: #b45309;
    --z71-secondary: #92400e;
    --z71-accent: #6366f1;
    --z71-background: #fffbeb;
    --z71-text: #451a03;
    --z71-muted: #fcd34d;
    --z71-light-text: #ffeadd;
    --z71-light-bg: #fffbf5;

    --ws-spacing-sm: 1rem;
    --ws-spacing-md: 2rem;
    --ws-spacing-lg: 3rem;
    --ws-spacing-xl: 5rem;
    --ws-container-width: 1200px;

    --ws-border-radius: 8px;
    --ws-transition-speed: 0.3s;
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700&family=Cabin:wght@400;600&display=swap');

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

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

body {
    font-family: 'Cabin', sans-serif;
    line-height: 1.6;
    color: var(--z71-text);
    background-color: var(--z71-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--z71-primary);
    color: var(--z71-light-text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Archivo', sans-serif;
    color: var(--z71-secondary);
    line-height: 1.2;
    margin-bottom: 0.8em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.05em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
}

h5 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1em;
}

a {
    color: var(--z71-primary);
    text-decoration: none;
    transition: color var(--ws-transition-speed) ease;
}

a:hover {
    color: var(--z71-accent);
}

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

ul, ol {
    margin-left: 1.5em;
    margin-bottom: 1em;
}

li {
    margin-bottom: 0.5em;
}

/* Utility Classes */
.ws-container {
    max-width: var(--ws-container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--ws-spacing-md);
    padding-right: var(--ws-spacing-md);
}

.ws-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--ws-spacing-lg);
}

.ws-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.ws-flex {
    display: flex;
    align-items: center;
    gap: var(--ws-spacing-md);
}

.ws-flex-col {
    flex-direction: column;
}

.ws-text-center {
    text-align: center;
}

.ws-section-padding {
    padding-top: var(--ws-spacing-xl);
    padding-bottom: var(--ws-spacing-xl);
}

.ws-bg-light {
    background-color: var(--z71-light-bg);
}

.ws-bg-primary {
    background-color: var(--z71-primary);
    color: var(--z71-light-text);
}

.ws-bg-primary h2, .ws-bg-primary h3 {
    color: var(--z71-light-text);
}

/* Buttons */
.ws-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: var(--ws-border-radius);
    cursor: pointer;
    transition: all var(--ws-transition-speed) ease;
    white-space: nowrap;
    border: 2px solid transparent;
}

.ws-btn-primary {
    background-color: var(--z71-primary);
    color: var(--z71-light-text);
    border-color: var(--z71-primary);
}

.ws-btn-primary:hover {
    background-color: var(--z71-secondary);
    border-color: var(--z71-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ws-btn-secondary {
    background-color: var(--z71-accent);
    color: var(--z71-light-text);
    border-color: var(--z71-accent);
}

.ws-btn-secondary:hover {
    background-color: var(--z71-primary);
    border-color: var(--z71-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ws-btn-outline {
    background-color: transparent;
    color: var(--z71-primary);
    border-color: var(--z71-primary);
}

.ws-btn-outline:hover {
    background-color: var(--z71-primary);
    color: var(--z71-light-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Outline Hover Fill CTA Style */
.ws-btn-cta {
    background-color: transparent;
    color: var(--z71-primary);
    border-color: var(--z71-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ws-btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--z71-primary);
    transform: translateX(-100%);
    transition: transform var(--ws-transition-speed) ease;
    z-index: -1;
}

.ws-btn-cta:hover {
    color: var(--z71-light-text);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.ws-btn-cta:hover::before {
    transform: translateX(0);
}

/* Header & Navigation */
.ws-header {
    background-color: var(--z71-background);
    padding: 1rem var(--ws-spacing-md);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ws-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--ws-container-width);
    margin: 0 auto;
}

.ws-logo {
    font-family: 'Archivo', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--z71-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ws-logo::before {
    content: '⚡'; /* Lightning bolt for 'Scintilla' */
    font-size: 1.2em;
    color: var(--z71-primary);
}

.ws-nav-menu {
    list-style: none;
    display: flex;
    gap: var(--ws-spacing-lg);
}

.ws-nav-menu a {
    color: var(--z71-text);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

.ws-nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--z71-primary);
    transition: width var(--ws-transition-speed) ease;
}

.ws-nav-menu a:hover::after {
    width: 100%;
}

.ws-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.35rem;
    padding: 0.5rem;
}

.ws-hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--z71-text);
    border-radius: 2px;
    transition: all var(--ws-transition-speed) ease;
}

.ws-mobile-nav {
    display: none; /* Controlled by JS */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--z71-background);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: var(--ws-spacing-md) 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--ws-transition-speed) ease-in-out;
}

.ws-mobile-nav.active {
    max-height: 300px; /* Adjust based on content */
}

.ws-mobile-nav a {
    display: block;
    padding: 0.75rem var(--ws-spacing-md);
    color: var(--z71-text);
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ws-mobile-nav a:hover {
    background-color: var(--z71-muted);
}

/* Hero Section */
.ws-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--z71-background);
    overflow: hidden;
}

.ws-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.ws-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(180, 83, 9, 0.8) 0%, rgba(146, 64, 14, 0.6) 100%);
    z-index: 2;
}

.ws-hero-content {
    position: relative;
    z-index: 3;
    color: var(--z71-light-text);
    max-width: 900px;
    padding: var(--ws-spacing-md);
}

.ws-hero-content h1 {
    color: var(--z71-light-text);
    margin-bottom: var(--ws-spacing-md);
}

.ws-hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: var(--ws-spacing-lg);
    font-weight: 400;
}

.ws-hero .ws-btn {
    font-size: 1.15rem;
    padding: 1.2rem 2.8rem;
    border-width: 3px;
    color: var(--z71-light-text);
    border-color: var(--z71-light-text);
}

.ws-hero .ws-btn:hover {
    background-color: var(--z71-accent);
    border-color: var(--z71-accent);
    color: var(--z71-light-text);
}

/* Section Styling */
.ws-section {
    padding: var(--ws-spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.ws-section + .ws-section {
    border-top: 1px solid var(--z71-muted);
}

.ws-section:nth-of-type(even) {
    background-color: var(--z71-light-bg);
}

.ws-section-header {
    text-align: center;
    margin-bottom: var(--ws-spacing-lg);
}

.ws-section-header p {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-size: 1.15rem;
    color: rgba(69, 26, 3, 0.8);
}

/* Content Blocks */
.ws-content-block {
    background-color: #ffffff;
    padding: var(--ws-spacing-md);
    border-radius: var(--ws-border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform var(--ws-transition-speed) ease, box-shadow var(--ws-transition-speed) ease;
}

.ws-content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.ws-content-block .ws-icon {
    font-size: 3rem;
    color: var(--z71-primary);
    margin-bottom: var(--ws-spacing-sm);
    display: block;
}

.ws-content-block h3 {
    margin-bottom: 0.5rem;
    color: var(--z71-secondary);
}

/* Pull Quotes */
.ws-pull-quote {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    font-weight: 600;
    color: var(--z71-accent);
    text-align: center;
    margin: var(--ws-spacing-xl) auto;
    max-width: 900px;
    position: relative;
    padding: 0 var(--ws-spacing-md);
}

.ws-pull-quote::before, .ws-pull-quote::after {
    content: '“';
    font-size: 4em;
    color: var(--z71-muted);
    position: absolute;
    line-height: 1;
}

.ws-pull-quote::before {
    top: -0.5em;
    left: 0;
    transform: translateX(-50%);
}

.ws-pull-quote::after {
    content: '”';
    bottom: -0.5em;
    right: 0;
    transform: translateX(50%);
}

/* How It Works */
.ws-step-card {
    text-align: center;
    padding: var(--ws-spacing-md);
    background-color: #ffffff;
    border-radius: var(--ws-border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform var(--ws-transition-speed) ease, box-shadow var(--ws-transition-speed) ease;
}

.ws-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.ws-step-card .ws-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--z71-primary);
    color: var(--z71-light-text);
    font-family: 'Archivo', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--ws-spacing-md);
}

.ws-step-card h3 {
    color: var(--z71-secondary);
    margin-bottom: 0.5rem;
}

/* Trust Badges / Social Proof */
.ws-trust-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--z71-muted);
    color: var(--z71-text);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin: 0.5rem;
    white-space: nowrap;
}

.ws-trust-badge .ws-icon {
    margin-right: 0.75rem;
    font-size: 1.5rem;
    color: var(--z71-primary);
}

/* Testimonials */
.ws-testimonial-card {
    background-color: #ffffff;
    padding: var(--ws-spacing-lg);
    border-radius: var(--ws-border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform var(--ws-transition-speed) ease, box-shadow var(--ws-transition-speed) ease;
}

.ws-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.ws-testimonial-card::before {
    content: '“';
    font-family: 'Archivo', sans-serif;
    font-size: 5rem;
    color: var(--z71-muted);
    position: absolute;
    top: -20px;
    left: 20px;
    line-height: 1;
    opacity: 0.6;
    z-index: 0;
}

.ws-testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: var(--ws-spacing-md);
    position: relative;
    z-index: 1;
}

.ws-testimonial-author {
    font-weight: 700;
    color: var(--z71-secondary);
    margin-top: var(--ws-spacing-sm);
}

.ws-testimonial-meta {
    font-size: 0.9rem;
    color: rgba(69, 26, 3, 0.7);
}

/* Long-form Intro */
.ws-long-form-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.ws-long-form-intro h2 {
    text-align: center;
    margin-bottom: var(--ws-spacing-md);
}

.ws-long-form-intro p:last-child {
    margin-bottom: 0;
}

/* CTA Subscribe */
.ws-cta-section {
    text-align: center;
    background-color: var(--z71-primary);
    color: var(--z71-light-text);
    padding: var(--ws-spacing-xl) 0;
}

.ws-cta-section h2 {
    color: var(--z71-light-text);
    margin-bottom: var(--ws-spacing-md);
}

.ws-cta-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto var(--ws-spacing-lg) auto;
}

.ws-cta-section .ws-btn {
    border-color: var(--z71-light-text);
    color: var(--z71-light-text);
}

.ws-cta-section .ws-btn:hover {
    background-color: var(--z71-accent);
    border-color: var(--z71-accent);
}

/* Form Styling */
.ws-form-group {
    margin-bottom: var(--ws-spacing-md);
    text-align: left;
}

.ws-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--z71-secondary);
}

.ws-form-group input[type="text"],
.ws-form-group input[type="email"],
.ws-form-group input[type="tel"],
.ws-form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--z71-muted);
    border-radius: var(--ws-border-radius);
    font-family: 'Cabin', sans-serif;
    font-size: 1rem;
    color: var(--z71-text);
    background-color: #fafafa;
    transition: border-color var(--ws-transition-speed) ease, box-shadow var(--ws-transition-speed) ease;
}

.ws-form-group input:focus, .ws-form-group textarea:focus {
    border-color: var(--z71-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.2);
}

.ws-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.ws-form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.ws-form-success {
    background-color: #dcfce7;
    color: #16a34a;
    padding: 1rem;
    border-radius: var(--ws-border-radius);
    margin-top: var(--ws-spacing-md);
    text-align: center;
    font-weight: 600;
    display: none;
}

.ws-form-sending {
    display: none;
    color: var(--z71-primary);
    text-align: center;
    margin-top: var(--ws-spacing-md);
}

/* FAQ Accordion */
.ws-faq-item {
    background-color: #ffffff;
    border: 1px solid var(--z71-muted);
    border-radius: var(--ws-border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow var(--ws-transition-speed) ease;
}

.ws-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ws-faq-q {
    padding: 1.2rem var(--ws-spacing-md);
    font-weight: 700;
    color: var(--z71-secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 251, 235, 0.5);
    transition: background-color var(--ws-transition-speed) ease;
}

.ws-faq-q:hover {
    background-color: rgba(255, 251, 235, 1);
}

.ws-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: transform var(--ws-transition-speed) ease;
}

.ws-faq-item.active .ws-faq-q::after {
    content: '-';
    transform: rotate(0deg); /* No rotation needed for +/- */
}

.ws-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--ws-transition-speed) ease-in-out;
    padding: 0 var(--ws-spacing-md);
}

.ws-faq-item.active .ws-faq-a {
    max-height: 500px; /* Sufficiently large for content */
    padding-top: 1rem;
    padding-bottom: 1.2rem;
    border-top: 1px solid var(--z71-muted);
}

/* Footer */
.ws-footer {
    background-color: var(--z71-secondary);
    color: var(--z71-light-text);
    padding: var(--ws-spacing-xl) 0 var(--ws-spacing-md) 0;
    text-align: center;
}

.ws-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--ws-spacing-lg);
    justify-items: center;
    margin-bottom: var(--ws-spacing-xl);
}

.ws-footer-col h4 {
    color: var(--z71-primary);
    margin-bottom: var(--ws-spacing-md);
    font-size: 1.2rem;
}

.ws-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ws-footer-col li {
    margin-bottom: 0.75rem;
}

.ws-footer-col a, .ws-footer-col p {
    color: var(--z71-light-text);
    font-size: 0.95rem;
}

.ws-footer-col a:hover {
    color: var(--z71-muted);
}

.ws-social-links {
    display: flex;
    justify-content: center;
    gap: var(--ws-spacing-md);
    margin-top: var(--ws-spacing-md);
}

.ws-social-links a {
    color: var(--z71-light-text);
    font-size: 1.8rem;
    transition: color var(--ws-transition-speed) ease, transform var(--ws-transition-speed) ease;
}

.ws-social-links a:hover {
    color: var(--z71-primary);
    transform: translateY(-3px);
}

.ws-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--ws-spacing-md);
    margin-top: var(--ws-spacing-xl);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
.ws-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.ws-animate.ws-animated {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ws-nav-menu {
        gap: var(--ws-spacing-md);
    }

    .ws-hero-content h1 {
        font-size: clamp(2rem, 5vw, 3.8rem);
    }

    .ws-hero-content p {
        font-size: clamp(1rem, 2vw, 1.25rem);
    }

    .ws-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--ws-spacing-md);
    }

    .ws-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ws-nav-menu {
        display: none;
    }

    .ws-hamburger {
        display: flex;
    }

    .ws-navbar {
        padding-right: 0;
    }

    .ws-header {
        padding-right: var(--ws-spacing-md);
    }

    .ws-hero {
        min-height: 70vh;
    }

    .ws-hero-content h1 {
        font-size: clamp(1.8rem, 6vw, 3rem);
    }

    .ws-hero-content p {
        font-size: clamp(0.95rem, 3vw, 1.15rem);
    }

    .ws-section-padding {
        padding-top: var(--ws-spacing-lg);
        padding-bottom: var(--ws-spacing-lg);
    }

    .ws-pull-quote::before, .ws-pull-quote::after {
        font-size: 3em;
    }

    .ws-footer-grid {
        grid-template-columns: 1fr;
    }

    .ws-footer-col {
        margin-bottom: var(--ws-spacing-lg);
    }

    .ws-footer-col:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .ws-container {
        padding-left: var(--ws-spacing-sm);
        padding-right: var(--ws-spacing-sm);
    }

    .ws-header {
        padding: 0.75rem var(--ws-spacing-sm);
    }

    .ws-logo {
        font-size: 1.5rem;
    }

    .ws-hero-content h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }

    .ws-hero-content p {
        font-size: clamp(0.9rem, 4vw, 1.05rem);
    }

    .ws-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .ws-hero .ws-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .ws-section-padding {
        padding-top: var(--ws-spacing-md);
        padding-bottom: var(--ws-spacing-md);
    }

    .ws-content-block, .ws-step-card, .ws-testimonial-card {
        padding: var(--ws-spacing-md);
    }

    .ws-pull-quote {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }

    .ws-trust-badge {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .ws-trust-badge .ws-icon {
        font-size: 1.2rem;
    }

    .ws-faq-q {
        padding: 1rem var(--ws-spacing-sm);
        font-size: 0.95rem;
    }

    .ws-faq-item.active .ws-faq-a {
        padding: 0.8rem var(--ws-spacing-sm) 1rem var(--ws-spacing-sm);
    }

    .ws-footer-col h4 {
        font-size: 1.1rem;
    }

    .ws-social-links a {
        font-size: 1.5rem;
    }
}
