/* Minification failed. Returning unminified contents.
(13,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(14,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(15,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(16,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(17,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(18,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(19,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(20,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(25,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(113,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-blue'
(123,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-blue'
(128,17): run-time error CSS1039: Token not allowed after unary operator: '-dark-blue'
(136,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-blue'
(143,17): run-time error CSS1039: Token not allowed after unary operator: '-dark-blue'
(163,22): run-time error CSS1039: Token not allowed after unary operator: '-gradient'
(175,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-blue'
(176,28): run-time error CSS1039: Token not allowed after unary operator: '-primary-blue'
(180,22): run-time error CSS1039: Token not allowed after unary operator: '-light-blue'
(259,46): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(259,67): run-time error CSS1039: Token not allowed after unary operator: '-primary-blue'
(270,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(272,35): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(277,17): run-time error CSS1039: Token not allowed after unary operator: '-text-gray'
(284,17): run-time error CSS1039: Token not allowed after unary operator: '-text-gray'
(291,17): run-time error CSS1039: Token not allowed after unary operator: '-text-gray'
(315,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-blue'
(331,17): run-time error CSS1039: Token not allowed after unary operator: '-text-gray'
(340,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(351,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(355,17): run-time error CSS1039: Token not allowed after unary operator: '-text-gray'
(366,17): run-time error CSS1039: Token not allowed after unary operator: '-text-gray'
(375,22): run-time error CSS1039: Token not allowed after unary operator: '-light-blue'
(376,33): run-time error CSS1039: Token not allowed after unary operator: '-primary-blue'
(384,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(397,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(401,22): run-time error CSS1039: Token not allowed after unary operator: '-bg-gray'
(411,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(415,17): run-time error CSS1039: Token not allowed after unary operator: '-text-gray'
(422,22): run-time error CSS1039: Token not allowed after unary operator: '-gradient'
(440,22): run-time error CSS1039: Token not allowed after unary operator: '-bg-gray'
(449,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(462,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-blue'
(469,17): run-time error CSS1039: Token not allowed after unary operator: '-dark-blue'
(477,22): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
 */
/* SwiftMerge Common Styles */

/* ============================================
   CSS Variables & Reset
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0069FF;
    --dark-blue: #004BB5;
    --light-blue: #E6F2FF;
    --text-dark: #1A1A1A;
    --text-gray: #6B7280;
    --bg-gray: #F9FAFB;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #0069FF 0%, #00A3FF 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   Navigation
   ============================================ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

nav.sticky {
    position: sticky;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image.small {
    width: 40px;
    height: 40px;
}

.logo-image svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3d5a6b;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2D3748;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links li:last-child {
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    border-left: 2px solid #E5E7EB;
}

.nav-links li:last-child a {
    color: var(--primary-blue);
    font-weight: 600;
}

.nav-links li:last-child a:hover {
    color: var(--dark-blue);
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--dark-blue);
    transform: translateX(-4px);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 105, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 105, 255, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--light-blue);
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 2rem;
}

.content-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    padding: 140px 2rem 25px;
    /*background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-gray) 100%);*/
    position: relative;
    overflow: hidden;
}

.hero.simple {
    background: white;
    padding: 80px 2rem 60px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    /*background: radial-gradient(circle, rgba(0, 105, 255, 0.1) 0%, transparent 70%);*/
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    /*background: radial-gradient(circle, rgba(0, 163, 255, 0.08) 0%, transparent 70%);*/
    border-radius: 50%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero.simple h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    background: none;
    -webkit-text-fill-color: var(--text-dark);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero.simple p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.hero .last-updated {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-image {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ============================================
   Sections
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.section p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.section li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* ============================================
   Info Boxes
   ============================================ */
.highlight-box {
    background: var(--light-blue);
    border-left: 4px solid var(--primary-blue);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.highlight-box p {
    margin: 0;
    color: var(--text-dark);
}

.warning-box {
    background: #FEF2F2;
    border-left: 4px solid #EF4444;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.warning-box p {
    margin: 0;
    color: var(--text-dark);
}

.contact-box {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

.contact-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-box p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.contact-box a {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 105, 255, 0.3);
}

.contact-box a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 105, 255, 0.4);
}

/* ============================================
   Table of Contents
   ============================================ */
.toc {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.toc h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.toc ul {
    list-style: none;
    margin: 0;
}

.toc li {
    margin-bottom: 0.5rem;
}

.toc a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.toc a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 2rem 30px;
}

footer.compact {
    padding: 40px 2rem 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-content.centered {
    text-align: center;
    display: block;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom.compact {
    padding-top: 1.5rem;
    font-size: 0.9rem;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .hero-cta {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero.simple h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .content-section {
        padding: 2rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }
}

.btn-google {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 12px;
}

.divider {
    margin-top: 3rem;
    border-top: 1px solid #E5E7EB;
}
