/* Modern Orange/Amber Warm Theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #f97316;
    --primary-amber: #f59e0b;
    --secondary-red: #ef4444;
    --accent-yellow: #fbbf24;
    --bg-cream: #fffbeb;
    --bg-white: #ffffff;
    --text-dark: #292524;
    --text-gray: #57534e;
    --text-light: #78716c;
    --border-color: #fde68a;
    --gradient-primary: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    --gradient-secondary: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    --shadow-warm: 0 4px 6px -1px rgba(249, 115, 22, 0.1);
    --shadow-warm-lg: 0 10px 25px -3px rgba(249, 115, 22, 0.2);
    --shadow-warm-xl: 0 20px 40px -5px rgba(249, 115, 22, 0.25);
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-cream);
}

/* Header Styles */
header {
    background: var(--bg-white);
    box-shadow: var(--shadow-warm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--border-color);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo {
    height: 50px;
    width: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-warm-lg);
    border: 2px solid var(--border-color);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 10px;
}

.nav-links a:hover::before {
    width: 70%;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-logo {
    width: 150px;
    height: 150px;
    border-radius: 25px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-warm-xl);
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--bg-white);
    color: var(--primary-orange);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-warm-xl);
    border: 3px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.35);
}

/* Section Styles */
.section {
    padding: 4.5rem 2rem;
}

.section-alt {
    background: var(--bg-white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-weight: 500;
}

/* App Details Section */
.app-details {
    padding: 4.5rem 2rem;
    background: var(--bg-white);
}

.details-card {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(245, 158, 11, 0.08) 100%);
    border-radius: 24px;
    padding: 3rem;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-warm);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.detail-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-warm);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-warm-lg);
    border-color: var(--primary-orange);
}

.detail-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.detail-content h3 {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.detail-content p {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
}

/* Intro Text */
.intro-text {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-warm);
    border: 2px solid var(--border-color);
}

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.intro-text p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.intro-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}
.dlcta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #f97316;
    color: #fffbeb;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-warm-xl);
    border: 3px solid transparent;
}

.intro-text li {
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.intro-text strong {
    color: var(--primary-orange);
    font-weight: 700;
}

/* Image Gallery - Single Row */
.image-gallery {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1.5rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.image-gallery::-webkit-scrollbar {
    height: 12px;
}

.image-gallery::-webkit-scrollbar-track {
    background: var(--border-color);
    border-radius: 10px;
}

.image-gallery::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

.gallery-item {
    flex: 0 0 auto;
    width: 290px;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-warm-lg);
    border: 3px solid var(--border-color);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-warm-xl);
    border-color: var(--primary-orange);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(41, 37, 36, 0.95);
    backdrop-filter: blur(8px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 16px;
    box-shadow: var(--shadow-warm-xl);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 45px;
    color: #ffffff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--gradient-primary);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-warm);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-warm-xl);
    border-color: var(--primary-orange);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Installation Steps */
.installation-steps {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(245, 158, 11, 0.08) 100%);
    padding: 3.5rem 3rem;
    border-radius: 24px;
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid var(--border-color);
}

.install-steps {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.step {
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-warm);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(8px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-warm-lg);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.4rem;
    box-shadow: var(--shadow-warm-lg);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 800;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-warm);
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-warm-lg);
    border-color: var(--primary-orange);
}

.faq-question {
    width: 100%;
    padding: 1.75rem 2rem;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-question::after {
    content: '+';
    font-size: 2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--primary-orange);
}
.faq-question.active::after {
    content: "−";
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 2rem 1.75rem 2rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-warm-lg);
    border: 2px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-cream);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-dark);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-warm-lg);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm-xl);
}

/* Download Page */
.download-container {
    max-width: 800px;
    margin: 0 auto;
}

.download-card {
    background: var(--bg-white);
    padding: 3.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-warm-lg);
    border: 2px solid var(--border-color);
}

.download-icon {
    width: 125px;
    height: 125px;
    margin: 0 auto 2rem;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: var(--shadow-warm-lg);
    display: block;
    border: 3px solid var(--border-color);
}

.download-info {
    margin: 3rem 0;
    text-align: left;
}

.download-info-item {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    align-items: center;
}

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

.download-info-item strong {
    color: var(--text-dark);
    font-weight: 700;
}

.download-info-item span {
    color: var(--text-gray);
    font-weight: 600;
}

.download-warning {
    background: #fef3c7;
    border-left: 4px solid var(--primary-orange);
    padding: 1.5rem;
    margin: 2.5rem 0;
    border-radius: 12px;
    text-align: left;
}

.download-warning p {
    color: #78350f;
    margin: 0;
    line-height: 1.8;
}

/* Legal Pages */
.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-warm);
    border: 2px solid var(--border-color);
}

.legal-content h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 2.5rem 0 1.25rem 0;
    font-size: 1.8rem;
    font-weight: 800;
}

.legal-content h3 {
    color: var(--text-dark);
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.legal-content p,
.legal-content ul {
    color: var(--text-gray);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 2.5rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: #ffffff;
    padding: 3.5rem 2rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    nav {
        padding: 1rem 0;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-warm-lg);
        padding: 2rem 0;
        gap: 1rem;
        border-top: 2px solid var(--border-color);
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
        padding: 0.5rem;
    }

    .hero {
        padding: 3.5rem 1.5rem;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
        border-radius: 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        width: 100%;
    }

    .section {
        padding: 3.5rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .app-details {
        padding: 3.5rem 1.5rem;
    }

    .details-card {
        padding: 2.5rem 1.5rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .detail-item {
        padding: 1.75rem;
    }

    .detail-icon {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
    }

    .detail-content h3 {
        font-size: 0.75rem;
    }

    .detail-content p {
        font-size: 1.2rem;
    }

    .intro-text {
        padding: 2.5rem 1.5rem;
    }

    .intro-text h2 {
        font-size: 1.7rem;
    }

    .intro-text p,
    .intro-text li {
        font-size: 0.95rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        margin-top: 2.5rem;
    }

    .feature-card {
        padding: 2.25rem 1.5rem;
    }

    .feature-icon {
        font-size: 2.75rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    .installation-steps {
        padding: 2.5rem 1.5rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem;
        gap: 1.25rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .faq-question {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .faq-answer.active {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 2.5rem 1.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .download-card {
        padding: 3rem 1.5rem;
    }

    .download-card h2 {
        font-size: 1.6rem;
    }

    .download-icon {
        width: 105px;
        height: 105px;
    }

    .download-info {
        margin: 2.5rem 0;
    }

    .download-info-item {
        padding: 1.25rem;
        font-size: 0.95rem;
    }

    .download-warning {
        padding: 1.25rem;
        margin: 2rem 0;
    }

    .download-warning p {
        font-size: 0.95rem;
    }

    .legal-content {
        padding: 3rem 1.5rem;
    }

    .legal-content h2 {
        font-size: 1.6rem;
    }

    .legal-content h3 {
        font-size: 1.2rem;
    }

    .legal-content p,
    .legal-content ul {
        font-size: 0.95rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .gallery-item {
        width: 250px;
    }

    .modal-close {
        right: 20px;
        top: 20px;
        font-size: 2.5rem;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    nav {
        padding: 0.85rem 0;
    }

    .logo {
        height: 44px;
        width: 44px;
    }

    .logo-text {
        font-size: 1.35rem;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero-logo {
        width: 95px;
        height: 95px;
        border-radius: 18px;
        border-width: 3px;
    }

    .hero h1 {
        font-size: 1.85rem;
        letter-spacing: -0.25px;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.75rem;
    }

    .cta-button {
        padding: 0.95rem 2rem;
        font-size: 0.95rem;
        border-radius: 40px;
    }

    .section {
        padding: 2.75rem 1rem;
    }

    .section-title {
        font-size: 1.65rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .app-details {
        padding: 2.75rem 1rem;
    }

    .details-card {
        padding: 2rem 1rem;
    }

    .details-grid {
        gap: 1.25rem;
    }

    .detail-item {
        padding: 1.5rem;
    }

    .detail-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .detail-content h3 {
        font-size: 0.7rem;
    }

    .detail-content p {
        font-size: 1.1rem;
    }

    .intro-text {
        padding: 2rem 1rem;
    }

    .intro-text h2 {
        font-size: 1.45rem;
    }

    .intro-text p,
    .intro-text li {
        font-size: 0.85rem;
    }

    .feature-card {
        padding: 2rem 1rem;
    }

    .feature-icon {
        font-size: 2.3rem;
    }

    .feature-card h3 {
        font-size: 1.05rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .installation-steps {
        padding: 2rem 1rem;
    }

    .step {
        padding: 1.5rem;
        gap: 1rem;
    }

    .step-number {
        width: 42px;
        height: 42px;
        font-size: 1.25rem;
    }

    .step-content h3 {
        font-size: 1.05rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 0.95rem;
    }

    .faq-answer.active {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 2rem 1rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .form-submit {
        padding: 1rem;
        font-size: 1rem;
    }

    .download-card {
        padding: 2.5rem 1rem;
    }

    .download-card h1 {
        font-size: 1.6rem;
    }

    .download-card h2 {
        font-size: 1.35rem;
    }

    .download-icon {
        width: 85px;
        height: 85px;
        border-width: 2px;
    }

    .download-info {
        margin: 2rem 0;
    }

    .download-info-item {
        padding: 1rem;
        font-size: 0.85rem;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .download-warning {
        padding: 1rem;
        margin: 1.75rem 0;
    }

    .download-warning p {
        font-size: 0.85rem;
    }

    .legal-content {
        padding: 2.5rem 1rem;
    }

    .legal-content h1 {
        font-size: 1.75rem;
    }

    .legal-content h2 {
        font-size: 1.45rem;
    }

    .legal-content h3 {
        font-size: 1.1rem;
    }

    .legal-content p,
    .legal-content ul {
        font-size: 0.85rem;
    }

    footer {
        padding: 3rem 1rem 1.75rem 1rem;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    .gallery-item {
        width: 210px;
    }

    .modal-close {
        right: 15px;
        top: 15px;
        font-size: 2rem;
        width: 42px;
        height: 42px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}