/* =============================================
   SILBERTEAM GMBH — MOBILE-FIRST STYLESHEET
   ============================================= */

*, *::before, *::after { box-sizing: border-box; }

:root {
    --primary: #1e293b;
    --primary-light: #334155;
    --accent: #d97706;
    --accent-hover: #b45309;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --border: #e2e8f0;
    --success: #15803d;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-main);
    margin: 0;
    padding: 0;
}

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

/* =============================================
   HEADER & NAVIGATION — Mobile First
   ============================================= */
header {
    background-color: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    position: relative;
}

.logo {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}
.logo span { color: var(--accent); }

/* Hamburger Button */
.hamburger {
    background: none;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    transition: border-color 0.2s;
}
.hamburger:hover { border-color: rgba(255,255,255,0.7); }
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav Menu — mobile: full-width dropdown */
.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary);
    list-style: none;
    margin: 0;
    padding: 8px 0 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
}
.nav-menu.open { display: flex; }

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 20px;
    display: block;
    font-size: 15px;
    transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link:focus { color: #fff; background: rgba(255,255,255,0.05); }

/* Services Dropdown Toggle */
.dropdown-toggle {
    cursor: pointer;
    background: none;
    border: none;
    font: inherit;
    font-size: 15px;
    font-weight: 500;
    color: #cbd5e1;
    padding: 12px 20px;
    width: 100%;
    text-align: left;
    display: block;
    transition: color 0.2s, background 0.2s;
}
.dropdown-toggle:hover { color: #fff; background: rgba(255,255,255,0.05); }

.nav-item { position: relative; }

/* Dropdown submenu — hidden on mobile by default */
.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: rgba(0,0,0,0.2);
    display: none;
}
.dropdown-menu.open { display: block; }

.dropdown-item a {
    color: #94a3b8;
    padding: 10px 20px 10px 36px;
    display: block;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}
.dropdown-item a:hover { background-color: var(--accent); color: #fff; }

/* Call button in nav */
.btn-call {
    background-color: var(--accent) !important;
    color: #fff !important;
    margin: 8px 16px 0;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    padding: 12px 16px !important;
}
.btn-call:hover { background-color: var(--accent-hover) !important; }

/* Desktop Navigation (min 768px) */
@media (min-width: 768px) {
    .hamburger { display: none; }

    .nav-menu {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: none;
        border: none;
        padding: 0;
        align-items: center;
        gap: 2px;
        box-shadow: none;
        max-height: none;
        overflow: visible;
    }

    .nav-link { padding: 8px 10px; font-size: 14px; }

    .dropdown-toggle {
        padding: 8px 10px;
        width: auto;
        font-size: 14px;
    }

    /* Desktop dropdown: hover-based */
    .dropdown-menu {
        display: block;
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        background-color: var(--primary-light);
        width: 230px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.25);
        border-radius: 6px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    }
    .nav-item:hover .dropdown-menu,
    .nav-item:focus-within .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .dropdown-item a { padding: 10px 20px; }

    .btn-call {
        margin: 0;
        padding: 8px 14px !important;
        white-space: nowrap;
        font-size: 13px;
    }
}

@media (min-width: 1024px) {
    .nav-link { padding: 8px 12px; font-size: 15px; }
    .dropdown-toggle { padding: 8px 12px; font-size: 15px; }
    .btn-call { font-size: 14px; padding: 8px 16px !important; }
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb-bg { background-color: #edf2f7; padding: 10px 16px; }
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 13px;
    color: var(--text-light);
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb i { margin: 0 2px; }

/* =============================================
   HERO
   ============================================= */
.hero {
    background: linear-gradient(rgba(15,23,42,0.87), rgba(15,23,42,0.87)),
                url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=80')
                center/cover no-repeat;
    color: #fff;
    padding: 60px 16px;
    text-align: center;
}
.hero-content { max-width: 800px; margin: 0 auto; }
.hero h1 {
    font-size: 26px;
    margin: 0 0 16px;
    font-weight: 800;
    line-height: 1.2;
}
.hero p {
    font-size: 15px;
    margin: 0 0 24px;
    color: #cbd5e1;
    line-height: 1.6;
}

@media (min-width: 600px) {
    .hero { padding: 80px 20px; }
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 17px; }
}
@media (min-width: 1024px) {
    .hero { padding: 110px 20px; }
    .hero h1 { font-size: 46px; }
    .hero p { font-size: 19px; }
}

.btn-main {
    background-color: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 13px 24px;
    font-weight: bold;
    border-radius: 6px;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
    font-size: 15px;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.btn-main:hover { background-color: var(--accent-hover); transform: translateY(-1px); }

@media (min-width: 768px) {
    .btn-main { padding: 14px 30px; font-size: 16px; }
}

/* =============================================
   TRUST BANNER
   ============================================= */
.trust-banner { background-color: var(--primary); color: #fff; }
.trust-flex {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
    padding: 28px 16px;
    text-align: center;
}
.trust-item h3 { font-size: 26px; color: var(--accent); margin: 0 0 4px; }
.trust-item p { margin: 0; font-size: 13px; color: #94a3b8; }

@media (min-width: 768px) {
    .trust-item h3 { font-size: 36px; }
    .trust-item p { font-size: 14px; }
    .trust-flex { padding: 40px 20px; }
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
    padding: 40px 16px;
    max-width: 1200px;
    margin: 0 auto;
}
@media (min-width: 768px) { .section { padding: 64px 20px; } }
@media (min-width: 1024px) { .section { padding: 80px 20px; } }

.section-title {
    text-align: center;
    font-size: 22px;
    margin: 0 0 12px;
    position: relative;
    padding-bottom: 14px;
    line-height: 1.3;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 52px; height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}
@media (min-width: 768px) { .section-title { font-size: 30px; } }
@media (min-width: 1024px) { .section-title { font-size: 34px; } }

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 28px;
    font-size: 15px;
}
@media (min-width: 768px) { .section-subtitle { margin-bottom: 48px; font-size: 16px; } }

/* =============================================
   GRIDS
   ============================================= */
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 580px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
}
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; } }

/* =============================================
   CARDS
   ============================================= */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    color: inherit;
    display: block;
}
@media (min-width: 768px) { .card { padding: 28px; } }
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.07);
    border-color: var(--accent);
}
.card h3 { font-size: 18px; margin: 0 0 10px; color: var(--primary); }
@media (min-width: 768px) { .card h3 { font-size: 20px; } }
.card-link {
    color: var(--accent);
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
    font-size: 14px;
    text-decoration: none;
}

/* =============================================
   PROJECT CARDS & BEFORE/AFTER
   ============================================= */
.project-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.project-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}
@media (min-width: 768px) { .project-img { height: 240px; } }
.project-info { padding: 18px 20px; }
.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.project-meta span { background: #f1f5f9; padding: 2px 8px; border-radius: 4px; }

.ba-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 24px;
}
.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.ba-img-panel {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #cbd5e1;
}
@media (min-width: 600px) { .ba-img-panel { height: 220px; } }
@media (min-width: 900px) { .ba-img-panel { height: 300px; } }
.ba-label {
    position: absolute;
    bottom: 10px; left: 10px;
    background: rgba(15,23,42,0.85);
    color: #fff;
    padding: 4px 10px;
    font-weight: bold;
    font-size: 11px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ba-details { padding: 18px 20px; }
@media (min-width: 768px) { .ba-details { padding: 24px 28px; } }

/* =============================================
   PROCESS STEPS
   ============================================= */
.process-list { display: flex; flex-direction: column; gap: 14px; }
.process-step {
    display: flex;
    gap: 16px;
    background: var(--bg-card);
    padding: 16px 18px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}
.process-step h4 { margin: 0 0 4px; font-size: 15px; }
.process-step p { margin: 0; font-size: 14px; color: var(--text-light); }
.step-num {
    background: var(--primary);
    color: #fff;
    width: 36px; height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

/* =============================================
   REVIEWS
   ============================================= */
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 10px;
}
.stars { color: #f59e0b; margin-bottom: 8px; font-size: 16px; }
.review-card p { font-size: 14px; line-height: 1.6; margin: 0; color: var(--text-light); }
.reviewer { font-weight: bold; margin-top: 14px; font-size: 14px; color: var(--primary); }
.reviewer-meta { font-size: 12px; color: var(--text-light); }

/* =============================================
   FAQ
   ============================================= */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 18px 20px;
}
.faq-q { font-weight: bold; font-size: 15px; color: var(--primary); margin-bottom: 8px; }
@media (min-width: 768px) { .faq-q { font-size: 17px; } }
.faq-a { color: var(--text-light); font-size: 14px; }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 10px;
}
@media (min-width: 768px) { .contact-form { padding: 36px 40px; } }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}
.form-control {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.2s;
    background: #fff;
}
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(217,119,6,0.1); }

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    font-weight: normal;
    line-height: 1.5;
    cursor: pointer;
    color: var(--text-light);
}
.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    min-width: 18px; height: 18px;
    cursor: pointer;
    accent-color: var(--accent);
}
.checkbox-label a { color: var(--accent); text-decoration: underline; }

/* =============================================
   MAP
   ============================================= */
.map-container {
    width: 100%;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-top: 20px;
}
@media (min-width: 768px) { .map-container { height: 340px; } }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
@media (min-width: 580px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(15,23,42,0.65);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 12px;
}

/* =============================================
   PRIVACY BANNER (DSGVO)
   ============================================= */
.privacy-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #0f172a;
    color: #e2e8f0;
    padding: 14px 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    border-top: 3px solid var(--accent);
    font-size: 13px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.privacy-banner p { margin: 0; flex: 1; min-width: 200px; line-height: 1.5; }
.privacy-banner a { color: var(--accent); text-decoration: underline; }
.privacy-ok {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 9px 22px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    font-size: 14px;
    font-family: inherit;
    transition: background 0.2s;
}
.privacy-ok:hover { background: var(--accent-hover); }

/* =============================================
   HIGHLIGHT BOX
   ============================================= */
.highlight-box {
    background: #eef2f7;
    padding: 22px 24px;
    border-radius: 10px;
    border-left: 5px solid var(--accent);
}
.highlight-box h3 { margin-top: 0; }

.highlight-dark {
    background-color: var(--primary);
    color: #e2e8f0;
    padding: 24px 28px;
    border-radius: 10px;
}
.highlight-dark h3, .highlight-dark h4 { color: var(--accent); margin-top: 0; }
.highlight-dark p { margin-bottom: 0; }

/* =============================================
   STATS ROW
   ============================================= */
.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    text-align: center;
}
@media (min-width: 768px) { .stats-row { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.stat-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 14px;
}
.stat-num { font-size: 30px; font-weight: 800; color: var(--accent); display: block; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: var(--text-light); }

/* =============================================
   TEAM CARDS
   ============================================= */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 580px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .team-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.team-icon { font-size: 46px; margin-bottom: 12px; display: block; }
.team-card h3 { margin: 0 0 8px; color: var(--primary); font-size: 17px; }
.team-card p { color: var(--text-light); font-size: 14px; margin: 0; }

/* =============================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================= */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 {
    font-size: 20px;
    margin-top: 36px;
    color: var(--primary);
    border-bottom: 2px solid var(--border);
    padding-bottom: 8px;
}
.legal-content h3 { font-size: 16px; margin-top: 22px; color: var(--primary); }
.legal-content p, .legal-content li { color: var(--text-light); line-height: 1.8; font-size: 15px; }
.legal-content a { color: var(--accent); }
.legal-content ul { padding-left: 20px; }
.legal-content .legal-box {
    background: #f1f5f9;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px 20px;
    margin: 16px 0;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 40px 16px 24px;
    margin-top: 60px;
    border-top: 5px solid var(--accent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
    border-bottom: 1px solid #1e293b;
}
@media (min-width: 580px) {
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .footer-container { grid-template-columns: repeat(4, 1fr); gap: 36px; }
}

.footer-col h4 { color: #fff; font-size: 15px; margin: 0 0 14px; }
.footer-col p { font-size: 13px; margin: 0 0 6px; line-height: 1.6; }
.footer-col a { color: #94a3b8; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #94a3b8; text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 22px;
    text-align: center;
    font-size: 13px;
}
.footer-bottom a { color: #94a3b8; text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }

/* =============================================
   UTILITY
   ============================================= */
.bg-light { background-color: #f1f5f9; border-radius: 12px; }
.text-accent { color: var(--accent); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Info Boxes */
.info-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 22px;
}
.info-box h3 { margin-top: 0; font-size: 18px; color: var(--primary); }

/* Service Hero (subpage) */
.service-hero {
    background: linear-gradient(rgba(15,23,42,0.85), rgba(15,23,42,0.85)) center/cover no-repeat;
    color: #fff;
    padding: 50px 16px;
    text-align: center;
}
.service-hero h1 { font-size: 24px; margin: 0 0 12px; font-weight: 800; }
.service-hero p { font-size: 15px; color: #cbd5e1; margin: 0; }
@media (min-width: 768px) {
    .service-hero { padding: 70px 20px; }
    .service-hero h1 { font-size: 38px; }
    .service-hero p { font-size: 18px; }
}

/* Ueber uns intro box */
.intro-box {
    background: linear-gradient(135deg, var(--primary) 0%, #2d4263 100%);
    color: #e2e8f0;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
}
.intro-box h2 { color: var(--accent); font-size: 22px; margin: 0 0 12px; }
.intro-box p { margin: 0; line-height: 1.7; font-size: 15px; }
@media (min-width: 768px) {
    .intro-box { padding: 48px 40px; }
    .intro-box h2 { font-size: 28px; }
    .intro-box p { font-size: 17px; }
}
