:root {
    --primary: #001933;
    --secondary: #000000;
    --accent: #0066cc;
    --text: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: var(--primary);
    color: var(--text);
}

.navbar {
    background: var(--secondary);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 60px;
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

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

.nav-links .cta-button {
    color: var(--text);
}

.nav-links .cta-button:hover {
    color: var(--text);
}

.hero {
    margin-top: 80px;
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--primary) 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 0.5;
    }
}

.hero img {
    width: 180px;
    /* Increased size */
    height: 180px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(0, 102, 204, 0.5));
    /* Added glow effect */
    animation: logoAnimation 4s ease-in-out infinite;
    transform-origin: center;
}

@keyframes logoAnimation {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(0, 102, 204, 0.5));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(0, 102, 204, 0.7));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(0, 102, 204, 0.5));
    }
}

.cta-button {
    background: var(--accent);
    color: var(--text);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.4);
    color: var(--text);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 100%);
    transform: rotate(45deg);
    animation: buttonShine 3s infinite;
}

@keyframes buttonShine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.features {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 0%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 100%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.feature-card svg {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-detail {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-detail svg {
    fill: var(--accent);
    flex-shrink: 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        display: block;
        padding: 0.8rem 0;
        text-align: center;
    }

    .nav-links .cta-button {
        margin: 1rem auto;
        width: 80%;
        /* Change from fit-content to percentage */
        max-width: 200px;
        /* Add max-width to prevent too wide buttons */
        text-align: center;
        /* Ensure text is centered */
    }

    .hero h1 {
        font-size: 2rem;
    }
}

.news-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.news-excerpt {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.8rem;
}

.read-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.read-more:hover svg {
    transform: translateX(3px);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    padding: 2rem;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    /* opacity: 0; */
    transition: opacity 0.3s ease;
}

.modal-content {
    background: var(--primary);
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    padding: 2rem;
    /* max-width: 600px; */
    margin: auto;
    /* transform: scale(0.7); */
    transition: transform 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 0.5rem;
}

/* .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    background: var(--primary);
    border-radius: 10px;
    padding: 2rem;
    max-width: 600px;
    margin: auto;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
} */

.close-modal:hover {
    color: var(--accent);
}

.modal-body {
    margin-top: 1rem;
    line-height: 1.6;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.modal-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modal-description-tax {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pricing-section {
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 0.7rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
    border: 2px solid var(--accent);
}

.pricing-card .cta-button {
    margin-top: auto;
}

.popular-tag {
    position: absolute;
    top: 0.9rem;
    right: -2.5rem;
    background: var(--accent);
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1.3rem;
}

.price {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price span {
    font-size: 1rem;
    opacity: 0.8;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    margin: 1rem 0;
    opacity: 0.9;
}

.features-list li::before {
    content: '✓';
    color: var(--accent);
    margin-right: 0.5rem;
}

.info-indicator {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 24px;
    height: 24px;
    fill: var(--accent);
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.pricing-card:hover .info-indicator {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes pulseInfo {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

.pricing-card:hover .info-indicator {
    animation: pulseInfo 1.5s infinite;
}

.cursor-hint {
    position: relative;
    font-size: 0.8rem;
    color: var(--accent);
    opacity: 0;
    transform: translateY(1px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.pricing-card:hover .cursor-hint {
    opacity: 0.8;
    transform: translateY(0);
}

.info-panel {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(0, 102, 204, 0.1);
    border-left: 4px solid var(--accent);
    border-radius: 5px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.info-panel-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.warning-icon {
    fill: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-panel p {
    margin: 0;
    line-height: 1.5;
    color: var(--text);
    opacity: 0.9;
}

.privacy-container {
    max-width: 800px;
    margin: 120px auto 60px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.privacy-container h1 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--accent);
}

.privacy-container h2 {
    color: var(--accent);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.privacy-container p {
    margin-bottom: 1rem;
}

.privacy-container ul {
    margin: 1rem 0 1rem 2rem;
}

.privacy-container li {
    margin-bottom: 0.5rem;
}

.last-updated {
    text-align: right;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2rem;
    font-size: 0.9rem;
}

.contact-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.email-link {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

.email-link:hover {
    color: #0052cc;
}

.text-link {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

.text-link:hover {
    color: #1eb7e6;
}

.footer {
    background: var(--secondary);
    padding: 2rem;
    margin-top: auto;
    flex-shrink: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--accent);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-links {
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }
}