* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7c3aed;
    --secondary-color: #14b8a6;
    --accent-color: #5b21b6;
    --dark-bg: #1f2937;
    --light-bg: #f9fafb;
    --text-dark: #111827;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.info-banner {
    background: linear-gradient(135deg, var(--warning-color), var(--danger-color));
    color: white;
    text-align: center;
    padding: 16px 24px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header {
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: var(--dark-bg);
    color: white;
    padding: 12px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-details {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-details a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--text-dark);
}

.brand img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-text h1 {
    font-size: 26px;
    color: var(--primary-color);
    font-weight: 700;
}

.brand-text p {
    font-size: 13px;
    color: var(--text-light);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
    font-size: 15px;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-dark);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 90px 24px;
    text-align: center;
}

.hero-section h2 {
    font-size: 52px;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-section p {
    font-size: 21px;
    margin-bottom: 35px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-light {
    background: white;
    color: var(--primary-color);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.stat-box {
    text-align: center;
}

.stat-value {
    font-size: 50px;
    font-weight: 700;
    display: block;
}

.stat-text {
    font-size: 17px;
    opacity: 0.95;
}

.services-section,
.guides-section,
.security-section,
.articles-section {
    padding: 90px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 44px;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.section-header p {
    font-size: 19px;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-box {
    background: white;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-color);
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 50px;
    margin-bottom: 22px;
}

.service-box h3 {
    font-size: 25px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.service-box p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 18px;
}

.service-features {
    list-style: none;
    margin-top: 22px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

.guides-section {
    background: var(--light-bg);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 18px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.category-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.category-item h3 {
    font-size: 23px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.category-item p {
    color: var(--text-light);
    margin-bottom: 22px;
    line-height: 1.7;
}

.category-item a {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.category-item a:hover {
    background: var(--accent-color);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.security-item {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border-left: 6px solid var(--primary-color);
    box-shadow: 0 3px 18px rgba(0,0,0,0.08);
}

.security-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.security-item h3 {
    font-size: 23px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.security-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.articles-section {
    background: var(--light-bg);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.article-box {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 18px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.article-box:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.article-tag {
    background: var(--primary-color);
    color: white;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
}

.article-body {
    padding: 28px;
}

.article-body h3 {
    font-size: 23px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.article-body p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 22px;
}

.article-body a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.article-body a:hover {
    color: var(--accent-color);
}

.newsletter-section {
    padding: 70px 24px;
}

.newsletter-box {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 70px 30px;
    border-radius: 18px;
    text-align: center;
}

.newsletter-box h2 {
    font-size: 38px;
    margin-bottom: 18px;
}

.newsletter-box p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.subscribe-form {
    display: flex;
    gap: 16px;
    max-width: 550px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.subscribe-form input {
    flex: 1;
    min-width: 280px;
    padding: 16px 22px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
}

.subscribe-form button {
    padding: 16px 40px;
    background: var(--dark-bg);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.subscribe-form button:hover {
    background: #374151;
    transform: translateY(-2px);
}

footer {
    background: var(--dark-bg);
    color: white;
    padding: 70px 24px 25px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 45px;
    margin-bottom: 45px;
}

.footer-col h3 {
    font-size: 21px;
    margin-bottom: 22px;
    color: var(--secondary-color);
}

.footer-col p,
.footer-col li {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.company-info {
    background: #111827;
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 45px;
}

.company-info h3 {
    color: var(--secondary-color);
    font-size: 23px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-info p {
    color: #d1d5db;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.6;
}

.company-info strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-base {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
}

.footer-base p {
    color: #9ca3af;
    margin-bottom: 12px;
}

.content-page {
    padding: 45px 24px;
    min-height: calc(100vh - 400px);
}

.content-page h1 {
    font-size: 44px;
    margin-bottom: 22px;
    color: var(--text-dark);
}

.content-page h2 {
    font-size: 34px;
    margin: 45px 0 22px;
    color: var(--text-dark);
}

.content-page h3 {
    font-size: 26px;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

.content-page h4 {
    font-size: 20px;
    margin: 25px 0 14px;
    color: var(--text-dark);
}

.content-page p {
    margin-bottom: 22px;
    line-height: 1.8;
    color: var(--text-light);
}

.content-page ul,
.content-page ol {
    margin: 22px 0;
    padding-left: 45px;
    color: var(--text-light);
    line-height: 1.8;
}

.content-page li {
    margin-bottom: 12px;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.alert {
    padding: 18px 24px;
    border-radius: 10px;
    margin-bottom: 28px;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.faq-item {
    background: white;
    padding: 28px;
    margin-bottom: 22px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

@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: 34px;
    }
    
    .service-grid,
    .categories-grid,
    .security-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-form input {
        min-width: 100%;
    }
}

.content-columns {
    display: flex;
    gap: 45px;
    margin: 45px 0;
    flex-wrap: wrap;
}

.form-column {
    flex: 1;
    min-width: 320px;
}

.info-column {
    flex: 1;
    min-width: 320px;
    background: var(--light-bg);
    padding: 35px;
    border-radius: 10px;
}

.info-block {
    margin-bottom: 28px;
}

.info-block h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-block p {
    margin-bottom: 6px;
}

.info-block a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.info-block a:hover {
    text-decoration: underline;
}

.notice-box {
    background: #fef3c7;
    padding: 24px;
    border-radius: 10px;
    border: 1px solid #fcd34d;
    margin-top: 45px;
}

.notice-box h3 {
    color: #92400e;
    margin-bottom: 12px;
}

.notice-box p {
    color: #78350f;
}

.legal-notice,
.policy-notice {
    background: #f9fafb;
    padding: 28px;
    border-left: 5px solid var(--primary-color);
    margin: 35px 0;
    border-radius: 6px;
}

.policy-section,
.legal-section {
    margin: 45px 0;
}

.document-box {
    background: white;
    padding: 28px;
    margin-bottom: 22px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.document-box h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.legal-button {
    display: inline-block;
    margin-top: 18px;
    color: white;
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.legal-button:hover {
    background-color: var(--accent-color);
}

.cookie-type {
    background: #f9fafb;
    padding: 22px;
    margin-bottom: 18px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.cookie-type h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 55px;
}

.support-option {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 3px 18px rgba(0,0,0,0.08);
}

.support-icon {
    font-size: 50px;
    margin-bottom: 22px;
    color: var(--primary-color);
}

.support-option h2 {
    color: var(--text-dark);
    margin-bottom: 18px;
    font-size: 25px;
}

.support-option a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.support-option a:hover {
    text-decoration: underline;
}

.help-navigation ul {
    display: flex;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
    gap: 18px;
    background: var(--light-bg);
    padding: 18px;
    border-radius: 10px;
}

.help-navigation ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s;
}

.help-navigation ul li a:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .content-columns,
    .help-navigation ul {
        flex-direction: column;
    }
}
