* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #9333ea;
    --primary-dark: #7e22ce;
    --secondary-color: #a855f7;
    --accent-color: #c084fc;
    --text-color: #1c1917;
    --light-text: #57534e;
    --very-light-text: #a8a29e;
    --background: #ffffff;
    --light-bg: #faf5ff;
    --border-color: #e7e5e4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

body {
    font-family: 'Montserrat', 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.68;
    background-color: var(--background);
}

.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 26px;
}

.notice-banner {
    background: linear-gradient(90deg, #f3e8ff 0%, #e9d5ff 50%, #f3e8ff 100%);
    color: #6b21a8;
    text-align: center;
    padding: 14px 26px;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 3px solid var(--primary-color);
    box-shadow: inset 0 -2px 4px rgba(147, 51, 234, 0.1);
}

header {
    background-color: var(--background);
    box-shadow: 0 3px 12px rgba(147, 51, 234, 0.08);
}

.header-contact {
    background: linear-gradient(135deg, var(--light-bg) 0%, #f3e8ff 100%);
    color: var(--primary-dark);
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid #e9d5ff;
}

.header-contact .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-bar {
    display: flex;
    gap: 35px;
    font-weight: 600;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 26px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s;
}

.brand:hover {
    transform: scale(1.03);
}

.brand img {
    width: 60px;
    height: 60px;
    margin-right: 16px;
    object-fit: contain;
    filter: drop-shadow(0 3px 6px rgba(147, 51, 234, 0.3));
}

.brand-text h1 {
    font-size: 30px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-text p {
    font-size: 13px;
    color: var(--light-text);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 36px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    padding: 10px 14px;
    border-radius: 8px;
}

nav ul li a:hover {
    color: var(--primary-color);
    background: var(--light-bg);
}

.menu-toggle {
    display: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, #a855f7 100%);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

.hero-section {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 40%, #e9d5ff 80%, #d8b4fe 100%);
    padding: 115px 26px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    top: -300px;
    left: -200px;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    right: -150px;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h2 {
    font-size: 54px;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--text-color);
    letter-spacing: -1.5px;
    text-shadow: 0 2px 8px rgba(147, 51, 234, 0.15);
}

.hero-section p {
    font-size: 19px;
    color: var(--text-color);
    max-width: 840px;
    margin: 0 auto 36px;
    line-height: 1.75;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 36px;
}

.btn {
    display: inline-block;
    padding: 17px 34px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ec4899 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(147, 51, 234, 0.5);
}

.btn-outline {
    background-color: white;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    font-weight: 900;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--light-bg) 0%, #f3e8ff 100%);
    transform: translateY(-4px);
    border-color: #a855f7;
}

.stats-section {
    padding: 70px 26px;
    background: white;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-box {
    text-align: center;
    padding: 36px 28px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #f3e8ff 100%);
    border-radius: 24px;
    border: 3px solid #e9d5ff;
    box-shadow: 0 6px 18px rgba(147, 51, 234, 0.12);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #ec4899);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-box:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 12px 32px rgba(147, 51, 234, 0.25);
    border-color: var(--primary-color);
}

.stat-value {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.stat-text {
    font-size: 16px;
    color: var(--light-text);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-section {
    padding: 90px 26px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 18px;
    letter-spacing: -0.8px;
}

.section-header p {
    font-size: 19px;
    color: var(--light-text);
    max-width: 740px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 600;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 32px;
}

.info-card {
    background: white;
    border-radius: 28px;
    padding: 42px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid #faf5ff;
}

.info-card:hover {
    transform: translateY(-14px) rotate(-1deg);
    box-shadow: 0 24px 48px rgba(147, 51, 234, 0.28);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 52px;
    margin-bottom: 24px;
    display: block;
}

.info-card h3 {
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--text-color);
}

.info-card p {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 24px;
    line-height: 1.7;
    font-weight: 600;
}

.check-list {
    list-style: none;
    margin-top: 18px;
}

.check-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-color);
    font-weight: 700;
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 19px;
}

.alt-bg {
    background: linear-gradient(135deg, #fafaf9 0%, var(--light-bg) 100%);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 32px;
}

.category-item {
    background: white;
    border-radius: 26px;
    padding: 38px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
    text-align: center;
    transition: all 0.4s;
    border: 3px solid #faf5ff;
}

.category-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 42px rgba(147, 51, 234, 0.28);
    border-color: var(--primary-color);
}

.category-item h3 {
    font-size: 23px;
    font-weight: 900;
    margin-bottom: 14px;
    color: var(--text-color);
}

.category-item p {
    font-size: 15px;
    color: var(--light-text);
    margin-bottom: 24px;
    line-height: 1.65;
    font-weight: 600;
}

.link-arrow {
    display: inline-block;
    padding: 11px 26px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ec4899 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.link-arrow:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.4);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 32px;
}

.tip-box {
    background: white;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
    border-right: 6px solid var(--primary-color);
    transition: all 0.3s;
}

.tip-box:hover {
    transform: translateX(-8px);
    box-shadow: 0 12px 32px rgba(147, 51, 234, 0.25);
}

.tip-box h3 {
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 13px;
    color: var(--primary-color);
}

.tip-box p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    font-weight: 600;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 32px;
}

.blog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
    transition: all 0.4s;
    border: 3px solid #faf5ff;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 42px rgba(147, 51, 234, 0.28);
    border-color: var(--primary-color);
}

.blog-date {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ec4899 100%);
    color: white;
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-body {
    padding: 32px;
}

.blog-body h3 {
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 13px;
    color: var(--text-color);
}

.blog-body p {
    font-size: 15px;
    color: var(--light-text);
    margin-bottom: 18px;
    line-height: 1.65;
    font-weight: 600;
}

.read-more {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more:hover {
    color: #ec4899;
    transform: translateX(5px);
    display: inline-block;
}

.subscribe-section {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 40%, #e9d5ff 80%, #d8b4fe 100%);
    padding: 90px 26px;
    text-align: center;
}

.subscribe-section h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 18px;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.subscribe-section p {
    font-size: 18px;
    color: var(--text-color);
    max-width: 660px;
    margin: 0 auto 36px;
    line-height: 1.75;
    font-weight: 600;
}

.subscribe-form {
    display: flex;
    max-width: 660px;
    margin: 0 auto;
    gap: 14px;
}

.subscribe-form input {
    flex: 1;
    padding: 18px 24px;
    border: 3px solid #e9d5ff;
    border-radius: 16px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
    background: white;
    font-weight: 600;
}

.subscribe-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(147, 51, 234, 0.15);
}

.subscribe-form button {
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ec4899 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscribe-form button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(147, 51, 234, 0.5);
}

.privacy-note {
    font-size: 14px;
    color: var(--text-color);
    margin-top: 18px;
    opacity: 0.85;
}

footer {
    background: linear-gradient(135deg, #fafaf9 0%, #f5f5f4 100%);
    padding: 70px 0 36px;
    border-top: 4px solid #e9d5ff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h3 {
    font-size: 19px;
    font-weight: 900;
    margin-bottom: 22px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col p,
.footer-col strong {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 12px;
    line-height: 1.75;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 14px;
    line-height: 2.3;
    transition: all 0.3s;
    font-weight: 700;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    transform: translateX(6px);
}

.company-info {
    background: linear-gradient(135deg, var(--light-bg) 0%, #f3e8ff 100%);
    padding: 32px;
    border-radius: 24px;
    margin-bottom: 36px;
    border-right: 6px solid var(--primary-color);
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.12);
}

.company-info h3 {
    font-size: 19px;
    font-weight: 900;
    margin-bottom: 18px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-info p {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 10px;
    line-height: 1.75;
    font-weight: 600;
}

.company-info strong {
    color: var(--text-color);
    font-weight: 900;
}

.footer-bottom {
    text-align: center;
    padding-top: 36px;
    border-top: 3px solid #e7e5e4;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 12px;
    font-weight: 700;
}

.content-page {
    padding: 70px 0;
}

.content-page h1 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 36px;
    color: var(--text-color);
    letter-spacing: -1px;
}

.content-page h2 {
    font-size: 32px;
    font-weight: 900;
    margin: 48px 0 22px;
    color: var(--text-color);
}

.content-page h3 {
    font-size: 24px;
    font-weight: 900;
    margin: 36px 0 18px;
    color: var(--text-color);
}

.content-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: var(--text-color);
}

.content-page ul,
.content-page ol {
    margin-bottom: 32px;
    margin-left: 26px;
    padding-left: 26px;
}

.content-page li {
    margin-bottom: 12px;
    line-height: 1.75;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-section h2 {
        font-size: 36px;
    }
    
    .hero-section p {
        font-size: 17px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .cards-grid,
    .category-grid,
    .tips-grid,
    .blog-grid,
    .stats-container,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .contact-bar {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
