/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Icons */
.icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    gap: 8px;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 16px;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-outline {
    background-color: transparent;
    color: #2563eb;
    border: 1px solid #2563eb;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: white;
}

.btn-white {
    background-color: white;
    color: #2563eb;
}

.btn-white:hover {
    background-color: #f8fafc;
}

.btn-full {
    width: 100%;
}

/* Text Utilities */
.text-primary {
    color: #2563eb;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-top {
    background-color: #2563eb;
    color: white;
    padding: 8px 0;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.header-info {
    display: flex;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-phone a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.header-phone a:hover {
    text-decoration: underline;
}

.header-main {
    padding: 16px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: #2563eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.logo-text h1 {
    font-size: 18px;
    font-weight: bold;
    color: #1f2937;
}

.logo-text p {
    font-size: 14px;
    color: #6b7280;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: #2563eb;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background-color: #374151;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 20px;
    color: #374151;
    margin-bottom: 32px;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature .icon {
    color: #16a34a;
}

.feature span {
    color: #374151;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-promo {
    background-color: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 16px;
    color: #92400e;
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background-color: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-icon {
    width: 48px;
    height: 48px;
    background-color: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon .icon {
    color: #16a34a;
    width: 24px;
    height: 24px;
}

.card-title {
    font-weight: 600;
    color: #1f2937;
}

.card-subtitle {
    font-size: 14px;
    color: #6b7280;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 48px;
    height: 48px;
    background-color: #dbeafe;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-icon .icon {
    color: #2563eb;
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.service-price {
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 16px;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #374151;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #2563eb;
    border-radius: 50%;
    flex-shrink: 0;
}

.services-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    text-align: center;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.benefit:nth-child(1) .benefit-icon {
    background-color: #dcfce7;
}

.benefit:nth-child(1) .benefit-icon .icon {
    color: #16a34a;
}

.benefit:nth-child(2) .benefit-icon {
    background-color: #dbeafe;
}

.benefit:nth-child(2) .benefit-icon .icon {
    color: #2563eb;
}

.benefit:nth-child(3) .benefit-icon {
    background-color: #f3e8ff;
}

.benefit:nth-child(3) .benefit-icon .icon {
    color: #7c3aed;
}

.benefit-icon .icon {
    width: 32px;
    height: 32px;
}

.benefit h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.benefit p {
    color: #6b7280;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: #f9fafb;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.pricing-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 24px;
    position: relative;
}

.pricing-card.popular {
    border-color: #2563eb;
    border-width: 2px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2563eb;
    color: white;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.pricing-header p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.price {
    font-size: 32px;
    font-weight: bold;
    color: #2563eb;
}

.old-price {
    font-size: 18px;
    color: #9ca3af;
    text-decoration: line-through;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

@media(max-width:768px) {
    .pricing-features {
        min-height: auto;
    }
    .logo-text p {
        display: none;
    }
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #374151;
}

.pricing-features li::before {
    content: '✓';
    color: #16a34a;
    font-weight: bold;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-discounts {
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 24px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pricing-discounts h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 16px;
}

.discounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    font-size: 14px;
    color: #1e40af;
}

/* Stations Section */
.stations {
    padding: 80px 0;
    background-color: white;
}

.stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.station-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.station-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.station-image {
    position: relative;
}

.station-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.station-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #16a34a;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.station-content {
    padding: 24px;
}

.station-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.station-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
}

.station-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.station-rating .icon {
    color: #fbbf24;
    width: 16px;
    height: 16px;
}

.station-rating span {
    font-size: 14px;
    font-weight: 500;
}

.station-district {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.station-info {
    margin-bottom: 16px;
}

.station-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #374151;
}

.station-info .info-item .icon {
    color: #6b7280;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.station-info .info-item a {
    color: #2563eb;
    text-decoration: none;
}

.station-info .info-item a:hover {
    text-decoration: underline;
}

.station-categories {
    margin-bottom: 24px;
}

.station-categories > span {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
    display: block;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.category {
    background-color: #f3f4f6;
    border: 1px solid #d1d5db;
    color: #374151;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.station-actions {
    display: flex;
    gap: 12px;
}

.station-actions .btn {
    flex: 1;
}

.stations-more {
    text-align: center;
}

/* Call to Action Section */
.cta {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    padding: 80px 0;
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-form-container {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.cta-form h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    margin-bottom: 16px;
    font-size: 14px;
}

.cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.cta-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
}

.form-disclaimer {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 8px;
}

.cta-contacts h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: background-color 0.2s;
}

.contact-method:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.contact-title {
    font-weight: 600;
}

.contact-subtitle {
    font-size: 14px;
    opacity: 0.8;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Articles Section */
.articles {
    padding: 80px 0;
    background-color: #f9fafb;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.article-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.article-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.article-image {
    position: relative;
}

.article-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #2563eb;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.article-content {
    padding: 24px;
}

.article-content h3 {
    margin-bottom: 12px;
}

.article-content h3 a {
    color: #1f2937;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.2s;
}

.article-content h3 a:hover {
    color: #2563eb;
}

.article-content p {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #6b7280;
}

.meta-item .icon {
    width: 12px;
    height: 12px;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #2563eb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.article-link:hover {
    color: #1d4ed8;
}

.article-link .icon {
    width: 16px;
    height: 16px;
}

.articles-more {
    text-align: center;
    margin-bottom: 80px;
}

.faq {
    background-color: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq h3 {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
    text-align: center;
    margin-bottom: 32px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.faq-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    background-color: #2563eb;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: bold;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.contact-item .icon {
    color: #60a5fa;
    width: 16px;
    height: 16px;
}

.contact-item a {
    color: white;
    text-decoration: none;
}

.contact-item a:hover {
    color: #60a5fa;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: white;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.newsletter-form input {
    padding: 12px;
    border: 1px solid #374151;
    border-radius: 6px;
    background-color: #374151;
    color: white;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 14px;
    color: #9ca3af;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    border-radius: 12px;
    padding: 32px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6b7280;
    padding: 4px;
    line-height: 1;
}

.modal-close:hover {
    color: #1f2937;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .stations-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-form-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-top-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .header-info {
        gap: 16px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text p {
        font-size: 18px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-card {
        position: static;
        margin-top: 20px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 18px;
    }
    
    .services,
    .pricing,
    .stations,
    .articles {
        padding: 60px 0;
    }
    
    .services-grid,
    .pricing-grid,
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .services-benefits {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content > p {
        font-size: 18px;
    }
    
    .cta-form-container {
        padding: 24px;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .modal-content {
        padding: 24px;
        margin: 16px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .header-actions .btn, .header-top {
        display: none;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .station-actions {
        flex-direction: column;
    }
    
    .contact-methods {
        gap: 8px;
    }
    
    .contact-method {
        padding: 8px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.pricing-card,
.station-card,
.article-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Loading state */
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.station-image {
    display: none;
}

.article-page {
            padding: 40px 0 80px;
            background-color: white;
        }

        .article-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .article-breadcrumb {
            margin-bottom: 32px;
        }

        .article-header {
            margin-bottom: 32px;
        }

        .article-meta-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            flex-wrap: wrap;
            gap: 16px;
        }

        .article-category {
            background-color: #2563eb;
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 500;
        }

        .article-meta {
            display: flex;
            gap: 16px;
        }

        .article-header h1 {
            font-size: 36px;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .article-intro {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 24px;
        }

        .article-intro p {
            font-size: 20px;
            color: #6b7280;
            flex: 1;
        }

        .share-btn {
            flex-shrink: 0;
        }

        .article-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .article-content {
            font-size: 16px;
            line-height: 1.7;
            color: #374151;
        }

        .article-content h2 {
            font-size: 28px;
            font-weight: bold;
            color: #1f2937;
            margin: 20px 0 20px 0;
        }

        .article-content h4 {
            font-size: 20px;
            font-weight: 600;
            color: #1f2937;
            margin: 24px 0 12px 0;
        }

        .article-content h5 {
            font-size: 16px;
            font-weight: 600;
            color: #1f2937;
            margin: 16px 0 8px 0;
        }

        .article-content p {
            margin-bottom: 16px;
        }

        .article-content ul {
            margin-bottom: 20px;
            padding-left: 24px;
        }

        .article-content li {
            margin-bottom: 8px;
        }

        .info-box,
        .warning-box,
        .checklist-box {
            padding: 20px;
            border-radius: 8px;
            margin: 24px 0;
        }

        .info-box {
            background-color: #eff6ff;
            border-left: 4px solid #3b82f6;
        }

        .warning-box {
            background-color: #fef3c7;
            border-left: 4px solid #f59e0b;
        }

        .checklist-box {
            background-color: #f0fdf4;
            border-left: 4px solid #10b981;
        }

        .checklist {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 12px;
        }

        .checklist label {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            font-size: 14px;
        }

        .checklist input[type="checkbox"] {
            width: 16px;
            height: 16px;
        }

        .article-cta {
            background-color: #eff6ff;
            border: 1px solid #bfdbfe;
            border-radius: 12px;
            padding: 32px;
            text-align: center;
            margin-top: 48px;
        }

        .article-cta h3 {
            font-size: 24px;
            font-weight: 600;
            color: #1e40af;
            margin-bottom: 12px;
        }

        .article-cta p {
            color: #1e40af;
            margin-bottom: 24px;
        }

        /* Mobile responsiveness for article */
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 28px;
            }

            .article-intro {
                flex-direction: column;
                gap: 16px;
            }

            .article-intro p {
                font-size: 18px;
            }

            .article-content h2 {
                font-size: 24px;
            }

            .article-content h3 {
                font-size: 20px;
            }

            .article-content h4 {
                font-size: 18px;
            }

            .article-meta-top {
                flex-direction: column;
                align-items: flex-start;
            }

            .article-cta {
                padding: 24px;
            }

            .article-cta h3 {
                font-size: 20px;
            }
        }

.legal-page, .sitemap-page {
            padding: 40px 0 80px;
            background-color: white;
        }

        .legal-container, .sitemap-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .legal-breadcrumb, .sitemap-breadcrumb {
            margin-bottom: 32px;
        }

        .legal-header, .sitemap-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .legal-header h1, .sitemap-header h1 {
            font-size: 36px;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 16px;
        }

        .legal-updated {
            color: #6b7280;
            font-style: italic;
        }

        .sitemap-header p {
            font-size: 18px;
            color: #6b7280;
        }

        .legal-content {
            font-size: 16px;
            line-height: 1.7;
            color: #374151;
        }

        .legal-section {
            margin-bottom: 48px;
        }

        .legal-section h2 {
            font-size: 28px;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 20px;
            border-bottom: 2px solid #e5e7eb;
            padding-bottom: 8px;
        }

        .legal-section h3 {
            font-size: 20px;
            font-weight: 600;
            color: #1f2937;
            margin: 24px 0 12px 0;
        }

        .legal-section h4 {
            font-size: 16px;
            font-weight: 600;
            color: #1f2937;
            margin: 16px 0 8px 0;
        }

        .legal-section p {
            margin-bottom: 16px;
        }

        .legal-section ul {
            margin-bottom: 20px;
            padding-left: 24px;
        }

        .legal-section li {
            margin-bottom: 8px;
        }

        .info-box, .warning-box {
            padding: 20px;
            border-radius: 8px;
            margin: 24px 0;
        }

        .info-box {
            background-color: #eff6ff;
            border-left: 4px solid #3b82f6;
        }

        .warning-box {
            background-color: #fef3c7;
            border-left: 4px solid #f59e0b;
        }

        .purposes-grid, .definitions-grid, .rights-grid, .security-measures {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }

        .purpose-item, .definition-item, .right-item, .measure-item {
            background-color: #f9fafb;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #e5e7eb;
        }

        .purpose-item h4, .definition-item h4, .right-item h4, .measure-item h4 {
            margin-bottom: 12px;
            color: #1f2937;
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
        }

        .data-table th,
        .data-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #e5e7eb;
        }

        .data-table th {
            background-color: #f9fafb;
            font-weight: 600;
            color: #1f2937;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin: 24px 0;
        }

        .contact-method {
            padding: 20px;
            border-radius: 8px;
            text-align: center;
        }
        
        .contact-method > div {
            text-align:left;
        }

        .contact-method h4 {
            margin-bottom: 8px;
            color: #1f2937;
        }

        .contact-method a {
            color: #2563eb;
            text-decoration: none;
        }

        .contact-method a:hover {
            text-decoration: underline;
        }

        .legal-cta, .sitemap-cta {
            background-color: #eff6ff;
            border: 1px solid #bfdbfe;
            border-radius: 12px;
            padding: 32px;
            text-align: center;
            margin-top: 48px;
        }

        .legal-cta h3, .sitemap-cta h3 {
            font-size: 24px;
            font-weight: 600;
            color: #1e40af;
            margin-bottom: 12px;
        }

        .legal-cta p, .sitemap-cta p {
            color: #1e40af;
            margin-bottom: 24px;
        }

        /* Terms specific styles */
        .rights-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }

        .service-conditions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }

        .condition-item {
            background-color: #f0fdf4;
            padding: 16px;
            border-radius: 8px;
            border-left: 4px solid #10b981;
        }

        .ip-protection {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }

        .protection-item {
            text-align: center;
            padding: 16px;
            background-color: #f9fafb;
            border-radius: 8px;
        }

        .privacy-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }

        .privacy-item {
            background-color: #f0fdf4;
            padding: 16px;
            border-radius: 8px;
            text-align: center;
        }

        .dispute-process {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 24px 0;
            flex-wrap: wrap;
            gap: 20px;
        }

        .step {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
            min-width: 200px;
        }

        .step-number {
            width: 40px;
            height: 40px;
            background-color: #2563eb;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }

        .step-content h4 {
            margin-bottom: 4px;
            color: #1f2937;
        }

        .step-content p {
            font-size: 14px;
            color: #6b7280;
        }

        /* Sitemap specific styles */
        .sitemap-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-bottom: 48px;
        }

        .sitemap-section {
            background-color: #f9fafb;
            padding: 24px;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
        }

        .sitemap-section h2 {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 20px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 16px;
            border-bottom: 2px solid #e5e7eb;
            padding-bottom: 8px;
        }

        .sitemap-section h2 .icon {
            color: #2563eb;
        }

        .sitemap-list {
            list-style: none;
            padding: 0;
        }

        .sitemap-list li {
            margin-bottom: 8px;
        }

        .sitemap-list a {
            color: #374151;
            text-decoration: none;
            padding: 4px 0;
            display: block;
            transition: color 0.2s;
        }

        .sitemap-list a:hover {
            color: #2563eb;
        }

        .quick-actions {
            margin: 48px 0;
        }

        .quick-actions h2 {
            font-size: 28px;
            font-weight: bold;
            color: #1f2937;
            text-align: center;
            margin-bottom: 32px;
        }

        .actions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
        }

        .action-card {
            background-color: white;
            padding: 24px;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            text-align: center;
            transition: box-shadow 0.3s;
        }

        .action-card:hover {
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .action-icon {
            width: 64px;
            height: 64px;
            background-color: #eff6ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

        .action-icon .icon {
            width: 32px;
            height: 32px;
            color: #2563eb;
        }

        .action-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 8px;
        }

        .action-card p {
            color: #6b7280;
            margin-bottom: 16px;
        }

        .site-stats {
            background-color: #f9fafb;
            padding: 32px;
            border-radius: 12px;
            margin: 48px 0;
        }

        .site-stats h2 {
            font-size: 24px;
            font-weight: bold;
            color: #1f2937;
            text-align: center;
            margin-bottom: 24px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 24px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 14px;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .legal-header h1, .sitemap-header h1 {
                font-size: 28px;
            }

            .legal-section h2 {
                font-size: 24px;
            }

            .purposes-grid, .definitions-grid, .rights-grid {
                grid-template-columns: 1fr;
            }

            .dispute-process {
                flex-direction: column;
                align-items: flex-start;
            }

            .step {
                min-width: 100%;
            }

            .sitemap-grid {
                grid-template-columns: 1fr;
            }

            .actions-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .legal-cta, .sitemap-cta {
                padding: 24px;
            }

            .data-table {
                font-size: 14px;
            }

            .data-table th,
            .data-table td {
                padding: 8px;
            }
        }
        
@media (max-width: 719px) {
    .faq-grid {display: flex;flex-wrap: wrap;}
}