* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Breadcrumbs */
.breadcrumbs {
    background: #f8f9fa;
    padding: 1rem 0;
    margin-top: 70px;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumbs li {
    color: #6c757d;
}

.breadcrumbs li:not(:last-child)::after {
    content: " / ";
    margin: 0 0.5rem;
    color: #6c757d;
}

.breadcrumbs a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ffd700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #ffd700;
    color: #333;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

.hero-image {
    margin-top: 2rem;
    font-size: 5rem;
    opacity: 0.8;
}

.hero-keywords {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    font-size: 0.9rem;
    text-align: left;
}

.hero-keywords strong {
    color: #ffd700;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Rankings Section */
.rankings {
    padding: 80px 0;
    background: white;
}

.rankings h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.rankings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.ranking-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 1px solid #e9ecef;
}

.ranking-card:hover {
    transform: translateY(-5px);
}

.ranking-card.highlight {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.ranking-card .rank {
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 1rem;
}

.platform-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.platform-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.platform-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.promo-code {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.promo-code strong {
    color: #667eea;
}

.discount {
    display: block;
    color: #28a745;
    font-weight: bold;
    margin-top: 0.5rem;
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background: #f8f9fa;
}

.comparison h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.comparison-filters {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.platform-checkboxes {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.platform-checkboxes label {
    display: flex;
    align-items: center;
    font-weight: normal;
}

.platform-checkboxes input {
    margin-right: 0.5rem;
}

.comparison-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.export-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.export-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Recommender Section */
.recommender {
    padding: 80px 0;
    background: white;
}

.recommender h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.recommender-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.checkbox-group,
.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.checkbox-group label,
.radio-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
}

.checkbox-group input,
.radio-group input {
    margin-right: 0.5rem;
    width: auto;
}

.recommendation-results {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Calculator Section */
.calculator {
    padding: 80px 0;
    background: #f8f9fa;
}

.calculator h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.calculator-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.calculator-results {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Coin Search Section */
.coin-search {
    padding: 80px 0;
    background: white;
}

.coin-search h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.search-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.search-form input {
    flex: 1;
    max-width: 400px;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.coin-results {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Tutorials Section */
.tutorials {
    padding: 80px 0;
    background: #f8f9fa;
}

.tutorials h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.tutorial-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab-button {
    background: white;
    border: 1px solid #ddd;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-button:first-child {
    border-radius: 5px 0 0 5px;
}

.tab-button:last-child {
    border-radius: 0 5px 5px 0;
}

.tab-button.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.tutorial-content {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Promotions Section */
.promotions {
    padding: 80px 0;
    background: white;
}

.promotions h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.promo-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid #e9ecef;
}

.promo-card.featured {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.promo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.promo-details {
    margin-bottom: 1.5rem;
}

.promo-details p {
    margin-bottom: 0.5rem;
}

/* Security Section */
.security {
    padding: 80px 0;
    background: #f8f9fa;
}

.security h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.security-platforms,
.security-tips {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.platform-security {
    margin-bottom: 2rem;
}

.platform-security h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

.platform-security ul,
.security-tips ul {
    list-style-type: none;
    padding-left: 0;
}

.platform-security li,
.security-tips li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.platform-security li:last-child,
.security-tips li:last-child {
    border-bottom: none;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #667eea;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .rankings-grid {
        grid-template-columns: 1fr;
    }

    .security-content {
        grid-template-columns: 1fr;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form input {
        max-width: 100%;
    }

    .tutorial-tabs {
        flex-direction: column;
    }

    .tab-button {
        border-radius: 5px;
        margin-bottom: 0.5rem;
    }

    .tab-button:first-child,
    .tab-button:last-child {
        border-radius: 5px;
    }

    .platform-checkboxes {
        flex-direction: column;
    }

    .checkbox-group,
    .radio-group {
        flex-direction: column;
    }

    .export-buttons {
        flex-direction: column;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

/* Comparison Table Styles */
.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.comparison-table th {
    background: #f8f9fa;
    font-weight: bold;
    color: #333;
}

.comparison-table tr:hover {
    background: #f8f9fa;
}

/* Coin Results Grid */
.coin-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.coin-result-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.coin-result-card h4 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.coin-result-card .trading-pairs {
    color: #666;
    font-size: 0.9rem;
}

/* Fee Calculator Results */
.fee-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.fee-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid #e9ecef;
}

.fee-card.best {
    border-color: #28a745;
    background: linear-gradient(135deg, #e8f5e8 0%, #ffffff 100%);
}

.fee-card h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

.fee-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.fee-savings {
    color: #28a745;
    font-weight: bold;
}

/* Tutorial Content */
.tutorial-step {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
}

.tutorial-step h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

.tutorial-step ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

.tutorial-step li {
    margin-bottom: 0.5rem;
}

/* Recommendation Results */
.recommendation-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
}

.recommendation-card.best-match {
    border-color: #28a745;
    background: linear-gradient(135deg, #e8f5e8 0%, #ffffff 100%);
}

.recommendation-card h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

.match-score {
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.recommendation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    color: #28a745;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error Message */
.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    border: 1px solid #f5c6cb;
}

/* Success Message */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    border: 1px solid #c3e6cb;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: all 0.3s;
}

.scroll-to-top:hover {
    background: #5a6fd8;
    transform: scale(1.1);
}

.scroll-to-top.visible {
    display: block;
}

/* Content Pages Styles */
.content-page {
    padding-top: 40px;
}

.content-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.content-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.content-hero .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.active {
    color: #ffd700 !important;
}

.quick-start {
    padding: 80px 0;
    background: #f8f9fa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #667eea;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 60px;
    margin-bottom: 1rem;
}

.platform-detailed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.platform-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.platform-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
}

.platform-content {
    padding: 0 1rem;
}

.platform-promo {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 1rem;
    margin: 1rem 0;
}

.platform-stats {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.stat-value {
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tip-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.tip-item:hover {
    transform: translateY(-5px);
}

.tip-item i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.mistakes-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mistake-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.mistake-icon {
    font-size: 2rem;
    min-width: 40px;
}

.mistake-content {
    flex: 1;
}

.mistake-content h3 {
    color: #dc3545;
    margin-bottom: 0.5rem;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.fee-breakdown {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.fee-type {
    font-weight: 500;
}

.fee-value {
    color: #28a745;
    font-weight: bold;
}

.fee-good {
    color: #28a745;
    font-weight: bold;
}

.fee-best {
    color: #007bff;
    font-weight: bold;
}

.fee-average {
    color: #ffc107;
    font-weight: bold;
}

.fee-bad {
    color: #dc3545;
    font-weight: bold;
}

.regulatory-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.regulatory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.regulatory-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.flag-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.regulatory-content {
    text-align: left;
    margin-top: 1rem;
}

.regulatory-content ul {
    list-style: none;
    padding: 0;
}

.regulatory-content li {
    margin-bottom: 0.5rem;
}

.license {
    background: #e8f4f8;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.comparison-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab-btn {
    background: white;
    border: 1px solid #ddd;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.tab-btn:first-child {
    border-radius: 5px 0 0 5px;
}

.tab-btn:last-child {
    border-radius: 0 5px 5px 0;
}

.tab-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.comparison-content {
    display: none;
}

.comparison-content.active {
    display: block;
}

.tax-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.tax-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.tax-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tax-content {
    margin-top: 1rem;
}

.tax-tips {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.tax-tips h4 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.choose-platform {
    padding: 80px 0;
    background: white;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.choose-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #e9ecef;
}

.choose-item:hover {
    transform: translateY(-5px);
}

.choose-item i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.table-note {
    text-align: center;
    margin-top: 1rem;
    color: #666;
}

.table-note i {
    color: #ffc107;
}

.tier-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.tier-content {
    display: none;
}

.tier-content.active {
    display: block;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.result-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid #e9ecef;
}

.result-item.best {
    border-color: #28a745;
    background: linear-gradient(135deg, #e8f5e8 0%, #ffffff 100%);
}

.result-item h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

.fee-original {
    color: #666;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.fee-discounted {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.fee-savings {
    color: #28a745;
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .content-hero h1 {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-header {
        flex-direction: column;
        text-align: center;
    }
    
    .platform-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .regulatory-grid {
        grid-template-columns: 1fr;
    }
    
    .tax-grid {
        grid-template-columns: 1fr;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        border-radius: 5px;
        margin-bottom: 0.5rem;
    }
    
    .tab-btn:first-child,
    .tab-btn:last-child {
        border-radius: 5px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
}

/* Friendly Links Section */
.friendly-links {
    padding: 80px 0;
    background: white;
    border-top: 1px solid #e9ecef;
}

.friendly-links h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.link-category {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.link-category:hover {
    transform: translateY(-5px);
}

.link-category h3 {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.link-category h3 i {
    font-size: 1.2rem;
}

.link-category ul {
    list-style: none;
    padding: 0;
}

.link-category li {
    margin-bottom: 1rem;
}

.link-category a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    border: 1px solid #e9ecef;
}

.link-category a:hover {
    background: #667eea;
    color: white;
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.link-category a i {
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.link-category a span {
    font-weight: 500;
}

.links-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    color: #856404;
    margin-top: 2rem;
}

.links-disclaimer i {
    color: #f39c12;
    margin-right: 0.5rem;
}

.links-disclaimer strong {
    color: #d68910;
}

/* Responsive Design for Friendly Links */
@media (max-width: 768px) {
    .links-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .link-category {
        padding: 1.5rem;
    }
    
    .link-category h3 {
        font-size: 1.1rem;
    }
    
    .link-category a {
        padding: 0.6rem 0.8rem;
        gap: 0.5rem;
    }
    
    .links-disclaimer {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Security Page Specific Styles */
.security-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.security-badge {
    background: #28a745;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.security-highlights, .security-details {
    margin-bottom: 1.5rem;
}

.security-highlights h4, .security-details h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

.score-excellent {
    color: #28a745;
    font-weight: bold;
}

.score-good {
    color: #ffc107;
    font-weight: bold;
}

.security-comparison {
    padding: 80px 0;
    background: white;
}

.security-tips {
    padding: 80px 0;
    background: #f8f9fa;
}

.threats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.threat-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #dc3545;
}

.threat-icon {
    font-size: 2.5rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.prevention {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 5px;
}

.prevention ul {
    margin-top: 0.5rem;
    list-style: none;
}

.security-threats {
    padding: 80px 0;
    background: white;
}

.security-checklist {
    padding: 80px 0;
    background: #f8f9fa;
}

.checklist-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.checklist-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.checklist input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
}

.checklist label {
    cursor: pointer;
    transition: color 0.3s;
}

.checklist input[type="checkbox"]:checked + label {
    color: #28a745;
    text-decoration: line-through;
}

/* Fee Calculator Styles */
.fee-calculator {
    padding: 80px 0;
    background: #f8f9fa;
}

.calculator-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.calculator-results {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.volume-tiers {
    padding: 80px 0;
    background: white;
}

.discount {
    color: #28a745;
    font-weight: bold;
}

.promo-code {
    background: #ffd700;
    color: #333;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-weight: bold;
}

/* Beginner Page Specific Styles */
.beginner-tips {
    padding: 80px 0;
    background: #f8f9fa;
}

.common-mistakes {
    padding: 80px 0;
    background: white;
}

.mistakes-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mistake-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-left: 4px solid #dc3545;
}

.mistake-icon {
    font-size: 2rem;
    min-width: 40px;
    color: #dc3545;
}

.mistake-content {
    flex: 1;
}

.mistake-content h3 {
    color: #dc3545;
    margin-bottom: 0.5rem;
}

/* Fee Page Specific Styles */
.fee-comparison-section {
    padding: 80px 0;
    background: white;
}

.fee-tips {
    padding: 80px 0;
    background: #f8f9fa;
}

.featured-row {
    background: linear-gradient(135deg, #e8f5e8 0%, #ffffff 100%);
    border-left: 4px solid #28a745;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.fee-type {
    font-weight: 500;
    color: #333;
}

.fee-value {
    color: #28a745;
    font-weight: bold;
}

/* USA/UK Page Specific Styles */
.regulatory-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.regulatory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.regulatory-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.flag-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.regulatory-content {
    text-align: left;
    margin-top: 1rem;
}

.regulatory-content ul {
    list-style: none;
    padding: 0;
}

.regulatory-content li {
    margin-bottom: 0.5rem;
}

.license {
    background: #e8f4f8;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: inline-block;
}

.comparison-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab-btn {
    background: white;
    border: 1px solid #ddd;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.tab-btn:first-child {
    border-radius: 5px 0 0 5px;
}

.tab-btn:last-child {
    border-radius: 0 5px 5px 0;
}

.tab-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.comparison-content {
    display: none;
}

.comparison-content.active {
    display: block;
}

.tax-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.tax-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.tax-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tax-content {
    margin-top: 1rem;
}

.tax-tips {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.tax-tips h4 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.choose-platform {
    padding: 80px 0;
    background: white;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.choose-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #e9ecef;
}

.choose-item:hover {
    transform: translateY(-5px);
}

.choose-item i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

/* General Content Page Utilities */
.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.table-note {
    text-align: center;
    margin-top: 1rem;
    color: #666;
}

.table-note i {
    color: #ffc107;
}

.tier-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.tier-content {
    display: none;
}

.tier-content.active {
    display: block;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.result-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid #e9ecef;
}

.result-item.best {
    border-color: #28a745;
    background: linear-gradient(135deg, #e8f5e8 0%, #ffffff 100%);
}

.result-item h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

.fee-original {
    color: #666;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.fee-discounted {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.fee-savings {
    color: #28a745;
    font-weight: bold;
}

/* Additional responsive styles for content pages */
@media (max-width: 768px) {
    .features-grid, .threats-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-form {
        grid-template-columns: 1fr;
    }
    
    .checklist-container {
        grid-template-columns: 1fr;
    }
    
    .regulatory-grid {
        grid-template-columns: 1fr;
    }
    
    .tax-grid {
        grid-template-columns: 1fr;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        border-radius: 5px;
        margin-bottom: 0.5rem;
    }
    
    .tab-btn:first-child,
    .tab-btn:last-child {
        border-radius: 5px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .mistakes-list {
        gap: 0.5rem;
    }
    
    .mistake-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .mistake-icon {
        min-width: auto;
    }
}

/* Articles Section */
.articles {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.article-card.featured {
    border-left: 4px solid #007bff;
}

.article-card.featured::before {
    content: "Featured";
    position: absolute;
    top: 15px;
    right: 15px;
    background: #007bff;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 1.5rem;
    text-align: center;
    font-size: 2rem;
}

.article-content {
    padding: 2rem;
}

.article-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.article-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reading-time {
    color: #888;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #e9ecef;
    color: #495057;
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-card .btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.articles-cta {
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.articles-cta h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.articles-cta p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 150px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Responsive Design for Articles */
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .article-content {
        padding: 1.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .articles-cta {
        padding: 2rem 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .article-content h3 {
        font-size: 1.2rem;
    }
    
    .article-icon {
        padding: 1rem;
        font-size: 1.5rem;
    }
    
    .articles-cta h3 {
        font-size: 1.3rem;
    }
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: 12px;
}

.faq-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 2px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item h3::before {
    content: '?';
    background: #007bff;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="90" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-section > * {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.cta-buttons .btn-primary {
    background: white;
    color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #0056b3;
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #007bff;
    transform: translateY(-2px);
}

/* Responsive Design for FAQ and CTA */
@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 1rem;
    }
    
    .faq-section h2 {
        font-size: 1.5rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .faq-section h2 {
        font-size: 1.3rem;
    }
    
    .faq-item h3 {
        font-size: 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.3rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
}