/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header styles */
header {
    border-bottom: 1px solid #e5e5e5;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 1.25rem;
    text-decoration: none;
    color: #333;
}

.desktop-nav {
    display: flex;
    gap: 1.5rem;
}

.desktop-nav a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: #333;
}

.desktop-nav a.active {
    font-weight: 500;
    color: #333;
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
}

/* Main content styles */
main {
    flex: 1;
}

/* Hero section */
.hero {
    padding: 3rem 1rem;
    background: linear-gradient(to bottom, #fff, #f5f5f5);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.hero-text p {
    color: #666;
    font-size: 1.125rem;
    max-width: 600px;
}

.hero-smalltext p {
    color: #666;
    font-size: 0.875rem;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.button.primary {
    background-color: #333;
    color: #fff;
}

.button.primary:hover {
    background-color: #444;
}

.button.outline {
    border: 1px solid #ccc;
    color: #333;
}

.button.outline:hover {
    background-color: #f5f5f5;
}

.button i {
    margin-left: 0.5rem;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    border: 8px solid #333;
    border-radius: 32px;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 24px;
    background-color: #333;
}

.phone-screen {
    height: 100%;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features section */
.features {
    padding: 3rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    font-size: 0.875rem;
}

/* Links section */
.links-section {
    padding: 3rem 1rem;
    background-color: #f5f5f5;
}

.links-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    font-size: 1.5rem;
}

.link-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
}

.link-card p {
    color: #666;
}

.text-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
}

.text-link i {
    margin-left: 0.25rem;
}

/* Page content styles */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.page-header {
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: bold;
}

.page-header .date {
    color: #666;
    margin-top: 0.5rem;
}

.content-section {
    margin-bottom: 2rem;
}

.content-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.content-section p {
    margin-bottom: 1rem;
}

.content-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

/* Support page styles */
.support-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.support-header {
    text-align: center;
    margin-bottom: 3rem;
}

.support-header h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.support-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.support-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.support-card {
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    overflow: hidden;
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.card-header i {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-header h2 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.card-header p {
    color: #666;
}

.card-body {
    padding: 1.5rem;
}

.card-body p {
    margin-bottom: 1rem;
}

.faq-section {
    margin-bottom: 3rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.accordion {
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #e5e5e5;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-button {
    width: 100%;
    padding: 1rem 1.5rem;
    text-align: left;
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-button::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: transform 0.3s;
}

.accordion-button.active::after {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.accordion-content.active {
    padding: 0 1.5rem 1rem;
    max-height: 500px;
}

.contact-box {
    background-color: #f5f5f5;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
}

.contact-box i {
    font-size: 3rem;
    color: #666;
    margin-bottom: 1rem;
}

.contact-box h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.contact-box p {
    color: #666;
    margin-bottom: 1rem;
}

/* Footer styles */
footer {
    border-top: 1px solid #e5e5e5;
    padding: 1.5rem 0;
}

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

.copyright {
    font-size: 0.75rem;
    color: #666;
}

.footer-nav {
    display: flex;
    gap: 1rem;
}

.footer-nav a {
    font-size: 0.75rem;
    color: #666;
    text-decoration: none;
}

.footer-nav a:hover {
    text-decoration: underline;
}

/* Responsive styles */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }

    .support-cards {
        grid-template-columns: 1fr;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }
}