/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FBF9F7; /* Snowy White */
    color: #2C3E50; /* Deep Blue */
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

h1 {
    color: #F7921E;
}
h2, h4 {
    color: #2C3E50; /* Deep Blue */
}

.section {
    padding: 60px 0;
    text-align: center;
}

.alt-bg {
    background: #FBF9F7; /* Bright Gold */
    color: #2C3E50;
}

/* Header Section */
.hero {
    background: linear-gradient(135deg, #2C3E50, #1B2838); /* Deep Blue Gradient */
    color: #FBF9F7; /* Snowy White */
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    font-weight: bold;
}

.btn-primary {
    background: #F7921E; /* Carrot Orange */
    color: #FBF9F7;
}

.btn-primary:hover {
    background: #F77B00; /* Darker Carrot Orange */
}

.btn-secondary {
    background: #F7921E; /* Bright Gold */
    color: #2C3E50;
}

.btn-secondary:hover {
    background: #E5C000; /* Darker Bright Gold */
}

.header-logo {
    width: 100%;
    height: auto;
    max-width: 300px; /* Prevents it from growing too large */
}

/* Testimonials */
.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.testimonial {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

/* Screenshot Gallery */
.screenshot-gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.screenshot-gallery img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.screenshot-gallery a img {
    transition: transform 0.2s ease-in-out;
}

.screenshot-gallery a:hover img {
    transform: scale(1.05);
    cursor: pointer;
}

/* Footer */
footer {
    text-align: center;
    background: #2C3E50; /* Deep Blue */
    color: #FBF9F7; /* Snowy White */
    padding: 20px;
    margin-top: 20px;
}

/* Accordion Styling */
.accordion {
    border-top: 1px solid #ccc;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
}

.accordion-header {
    background-color: #F7921E; /* Bright Gold */
    color: #2C3E50;
    cursor: pointer;
    padding: 12px 16px;
    border: none;
    outline: none;
    text-align: left;
    font-size: 16px;
    transition: background-color 0.3s;
    width: 100%;
    font-weight: bold;
}

.accordion-header:hover {
    background-color: #E5C000; /* Darker Gold */
}

.accordion-content {
    background-color: #FBF9F7; /* Snowy White */
    display: none;
    padding: 12px 16px;
    border-top: 1px solid #eee;
}

.accordion-item.active .accordion-content {
    display: block;
}

.changelog-content {
    text-align: left;
}
