:root {
    --primary: #2563eb;
    --accent: #10b981;
    --dark: #4664a8;
    --dark-80: #334155;
    --light: #f8fafc;
    --light-gray: #e2e8f0;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --gradient-accent: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark-80);
    background: var(--light);
    overflow-x: hidden
}

main {
    padding: 80px 0;
    min-height: 60vh
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.version-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700
}

.date {
    color: #64748b;
    font-size: 14px;
    font-weight: 500
}

ul {
    margin: 16px 0;
    padding-left: 24px
}

li {
    margin-bottom: 12px
}

.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: -1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.03
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--light-gray);
    box-shadow: var(--shadow-sm)
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px
}

.logo-img {
    height: 50px;
    width: auto
}

.logo {
    font-family: 'Clash Display', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em
}

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

.nav-links a {
    color: var(--dark-80);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s
}

.nav-links a:hover::after {
    width: 100%
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer
}

.btn-primary {
    background: var(--gradient-primary);
    color: white !important;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5)
}

.btn-cta-white {
    background: white !important;
    color: #2563eb !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important
}

.btn-secondary {
    background: white;
    color: var(--dark);
    border: 2px solid var(--light-gray)
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px)
}

.hero {
    padding: 100px 0 80px;
    position: relative
}

.hero::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    border-radius: 40px 0 0 40px;
    z-index: 0
}

.hero-asymmetric {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1
}

.hero-left {
    max-width: 600px
}

.founding-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #ea580c;
    margin-bottom: 24px;
    animation: pulse 3s ease-in-out infinite
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }
}

.hero-left h1 {
    font-size: clamp(48px, 7vw, 80px);
    line-height: 1.1;
    margin-bottom: 32px
}

.hero-left h1 .highlight {
    color: var(--primary)
}

.hero-desc {
    font-size: 20px;
    color: var(--dark-80);
    line-height: 1.7;
    margin-bottom: 32px
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px
}

.pill {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s
}

.pill:hover {
    background: rgba(37, 99, 235, 0.15);
    transform: translateY(-2px)
}

.trust-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2)
}

.trust-icon {
    font-size: 24px
}

.trust-line span:last-child {
    color: var(--dark-80);
    font-size: 14px;
    font-weight: 500
}

.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.ben-stack {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ben-card {
    background: white;
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    border: 2px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm)
}

.ben-card:hover {
    transform: translateX(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary)
}

.ben-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0
}

.ben-card-text h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 6px;
    font-weight: 700
}

.ben-card-text p {
    font-size: 14px;
    color: var(--dark-80);
    line-height: 1.6
}

@media (max-width:968px) {
    .hero-asymmetric {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .hero::after {
        width: 100%;
        height: 200px;
        top: auto;
        bottom: 0;
        border-radius: 40px 40px 0 0
    }

    .ben-stack {
        gap: 12px
    }

    .ben-card {
        padding: 20px;
        gap: 16px
    }

    .ben-img {
        width: 60px;
        height: 60px
    }
}

section {
    padding: 80px 0
}

.section-header {
    text-align: center;
    margin-bottom: 64px
}

.section-header h2 {
    text-align: center
}

.section-tag {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px
}

h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em
}

.section-subtitle {
    font-size: 18px;
    color: var(--dark-80);
    max-width: 600px;
    margin: 0 auto
}

.problem-solution {
    background: var(--dark);
    color: white;
    border-radius: 32px;
    padding: 64px;
    position: relative;
    overflow: hidden
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%)
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1
}

.comparison-item h3 {
    font-size: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px
}

.icon {
    font-size: 32px
}

.problem-list,
.solution-list {
    list-style: none
}

.problem-list li,
.solution-list li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.problem-list li::before {
    content: '❌';
    flex-shrink: 0
}

.solution-list li::before {
    content: '✅';
    flex-shrink: 0
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary)
}

.feature-card:hover::before {
    transform: scaleX(1)
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark)
}

.feature-card p {
    color: var(--dark-80);
    line-height: 1.7
}

.pricing-section {
    background: linear-gradient(180deg, #f8fafc 0%, #e0e7ff 100%)
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px
}

.toggle-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-80);
    transition: color 0.3s
}

.toggle-label.active {
    color: var(--primary)
}

.save-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 6px
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background: var(--light-gray);
    border-radius: 16px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    padding: 0
}

.toggle-switch.active {
    background: var(--primary)
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2)
}

.toggle-switch.active .toggle-slider {
    transform: translateX(28px)
}

.price-amount-strike {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Clash Display', sans-serif;
    color: var(--dark);
    text-decoration: line-through;
    opacity: 0.4;
    margin-right: 8px
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 48px 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    position: relative;
    border: 2px solid transparent
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary)
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark)
}

.pricing-description {
    color: var(--dark-80);
    margin-bottom: 24px;
    font-size: 15px
}

.price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px
}

.price-amount {
    font-size: 56px;
    font-weight: 700;
    font-family: 'Clash Display', sans-serif;
    color: var(--dark)
}

.price-period {
    font-size: 18px;
    color: var(--dark-80)
}

.price-annual {
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 600
}

.pricing-features {
    list-style: none;
    margin: 32px 0
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0
}

.btn-full {
    width: 100%;
    justify-content: center
}

.faq-list {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 32px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s
}

.faq-question:hover {
    color: var(--primary)
}

.faq-icon {
    font-size: 24px;
    transition: transform 0.3s
}

.faq-answer {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: var(--dark-80);
    line-height: 1.7
}

.faq-item.active .faq-answer {
    padding: 0 32px 24px;
    max-height: 500px
}

.faq-item.active .faq-icon {
    transform: rotate(180deg)
}

.cta-section {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    border-radius: 32px;
    padding: 80px 48px;
    position: relative;
    overflow: hidden
}

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

.cta-section h2 {
    color: white;
    margin-bottom: 24px
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95
}

footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 32px
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px
}

.footer-logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px
}

.footer-logo-img {
    height: 60px;
    width: auto
}

.footer-logo {
    font-family: 'Clash Display', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.footer-description {
    font-size: 15px;
    line-height: 1.7
}

.footer-section h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 16px
}

.footer-links {
    list-style: none
}

.footer-links li {
    margin-bottom: 12px
}

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

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--dark-80);
    font-size: 24px
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0)
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--light-gray)
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--dark-80);
    font-size: 24px
}

.mobile-nav-links {
    list-style: none;
    padding: 20px
}

.mobile-nav-links li {
    margin-bottom: 16px
}

.mobile-nav-links a {
    color: var(--dark-80);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: block;
    padding: 8px 0
}

.mobile-nav-links .btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px
}

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

    .mobile-menu-toggle {
        display: block
    }

    .mobile-menu {
        display: block
    }

    .comparison-grid {
        grid-template-columns: 1fr
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .pricing-card.featured {
        transform: none
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease-out forwards
}

.doc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
}

.doc-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    overflow-x: hidden;
}

.doc-sidebar::-webkit-scrollbar {
    width: 6px;
}

.doc-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.doc-sidebar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.doc-sidebar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.doc-nav-section {
    margin-bottom: 16px;
}

.doc-nav-title {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0010c3;
    margin-bottom: 4px;
}

.doc-nav-link {
    display: block;
    padding: 2px 12px;
    color: #475569;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 14px;
}

.doc-nav-link:hover {
    background: #e2e8f0;
    color: #2563eb;
}

.doc-nav-link.active {
    background: #eff6ff;
    color: #2563eb;
    font-weight: 600;
}

.doc-content {
    background: white;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.doc-content h1 {
    font-family: 'Clash Display', sans-serif;
    font-size: 42px;
    margin-bottom: 16px;
    color: #0f172a;
}

.doc-content h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: 32px;
    margin: 48px 0 24px;
    color: #1e293b;
}

.doc-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: #334155;
}

.doc-content p {
    margin-bottom: 20px;
}

.doc-content ul,
.doc-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.doc-content li {
    margin-bottom: 12px;
}

.doc-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.code-block {
    background: #0f172a;
    color: #e2e8f0;
    padding: 24px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 24px 0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.note {
    background: #fff7ed;
    border-left: 4px solid #f59e0b;
    padding: 16px 20px;
    margin: 24px 0;
    border-radius: 8px;
}

.note-title {
    font-weight: 700;
    color: #92400e;
    margin-bottom: 8px;
}

.wp-note {
    background: #f0f9ff;
    border-left: 4px solid #00A0D2;
    padding: 16px 20px;
    margin: 24px 0;
    border-radius: 8px;
}

.wp-note-title {
    font-weight: 700;
    color: #0073AA;
    margin-bottom: 8px;
}

@media (max-width: 968px) {
    .doc-container {
        grid-template-columns: 1fr;
    }

    .doc-sidebar {
        position: relative;
        top: 0;
    }
}


.tag-pro {
    background: #166534;
    color: #ffffff;
}

.tag-proplus {
    background: #1e40af;
    color: #ffffff;
}

.doc-search {
    position: sticky;
    top: 0;
    padding-bottom: 12px;
    margin-bottom: 16px;
    background: #f8fafc;
}

.doc-search input {
    width: 100%;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid #cbd5f5;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.doc-search input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}

.tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 8px
}

.tag-new {
    background: #dcfce7;
    color: #166534
}

.tag-improvement {
    background: #dbeafe;
    color: #1e40af
}

.tag-fix {
    background: #ff0000;
    color: #ffffff
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow-md);
    line-height: 1.7
}

.content-container a {
    color: #2563eb;
    text-decoration: none
}

.content-container a:hover {
    text-decoration: underline
}

h1 {
    font-family: 'Clash Display', sans-serif;
    font-size: 42px;
    margin-bottom: 32px;
    color: #0f172a
}

h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: 28px;
    margin: 48px 0 16px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 16px
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0
}

.contact-card {
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    text-align: center
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 16px
}

img {
  display: block;
  border-radius: 10px;
  margin:auto;
}