/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Oswald', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #f985ff, #85deff);
    color: #0a0a0a;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(249, 133, 255, 0.3);
}

.btn-secondary {
    background: #2a2a2a;
    color: #e0e0e0;
    border: 2px solid #444;
}

.btn-secondary:hover {
    background: #444;
    border-color: #f985ff;
}

.btn-outline {
    background: transparent;
    color: #f985ff;
    border: 2px solid #f985ff;
}

.btn-outline:hover {
    background: #f985ff;
    color: #0a0a0a;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.3rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f985ff;
    text-decoration: none;
}

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

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #f985ff;
    background: rgba(249, 133, 255, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Banner Section */
.banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.banner-content {
    text-align: center;
    z-index: 2;
}

.banner-content h1 {
    background: linear-gradient(135deg, #f985ff, #85deff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.banner-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #85deff;
    font-weight: 500;
}

.feature-icon {
    color: #f985ff;
    font-weight: bold;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-dark {
    background: #111;
}

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

.section-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

/* Company Section */
.company-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.company-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(249, 133, 255, 0.1), rgba(133, 222, 255, 0.1));
    border-radius: 10px;
    border: 1px solid rgba(249, 133, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f985ff;
}

.stat-label {
    color: #85deff;
    font-weight: 500;
}

/* Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement {
    text-align: center;
    padding: 2rem;
    background: rgba(42, 42, 42, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(249, 133, 255, 0.2);
    transition: all 0.3s ease;
}

.achievement:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 133, 255, 0.2);
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Services Section */
.services-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 1rem 2rem;
    background: #2a2a2a;
    color: #e0e0e0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
    background: linear-gradient(135deg, #f985ff, #85deff);
    color: #0a0a0a;
}

.tab-content {
    background: rgba(42, 42, 42, 0.5);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(249, 133, 255, 0.2);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.service-rating {
    color: #85deff;
    margin-bottom: 1rem;
}

.service-features {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(249, 133, 255, 0.2);
    color: #f985ff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #85deff;
    margin-top: 1rem;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review {
    background: rgba(42, 42, 42, 0.5);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #f985ff;
}

.review-rating {
    color: #85deff;
    margin-bottom: 1rem;
}

.review-author {
    color: #f985ff;
    font-weight: 500;
    margin-top: 1rem;
}

/* Conditions Section */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.condition {
    background: rgba(42, 42, 42, 0.5);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(133, 222, 255, 0.2);
}

.condition ul {
    list-style: none;
    padding-left: 0;
}

.condition li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.condition li:before {
    content: "✓";
    color: #85deff;
    margin-right: 0.5rem;
}

/* Newsletter Section */
.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    margin-top: 2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid #444;
    border-radius: 5px;
    background: rgba(42, 42, 42, 0.5);
    color: #e0e0e0;
    font-family: 'Oswald', sans-serif;
}

.newsletter-form input::placeholder {
    color: #888;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 3rem 0 1rem;
    border-top: 1px solid #222;
}

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

.footer-section h3,
.footer-section h4 {
    color: #f985ff;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #85deff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #222;
    color: #888;
}

/* Page Headers */
.page-header,
.page-hero,
.legal-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(249, 133, 255, 0.1), rgba(133, 222, 255, 0.1));
}

.page-hero {
    position: relative;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.page-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

/* About Page Specific */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-stats-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(249, 133, 255, 0.1), rgba(133, 222, 255, 0.1));
    border-radius: 10px;
    border: 1px solid rgba(249, 133, 255, 0.2);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #f985ff;
}

.stat-desc {
    font-size: 0.9rem;
    color: #888;
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background: rgba(42, 42, 42, 0.5);
    border-radius: 10px;
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.member-role {
    color: #85deff;
    font-style: italic;
    margin-bottom: 1rem;
}

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

.value-card {
    padding: 2rem;
    background: rgba(42, 42, 42, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(133, 222, 255, 0.2);
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Catalog Page */
.catalog-filters {
    padding: 2rem 0;
    background: #111;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: #2a2a2a;
    color: #e0e0e0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #f985ff, #85deff);
    color: #0a0a0a;
}

.catalog {
    padding: 3rem 0;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.car-card {
    background: rgba(42, 42, 42, 0.5);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(249, 133, 255, 0.2);
    transition: all 0.3s ease;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(249, 133, 255, 0.2);
}

.car-image {
    height: 200px;
    overflow: hidden;
}

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

.car-content {
    padding: 1.5rem;
}

.car-year {
    color: #85deff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.car-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #85deff;
}

.rating-text {
    color: #888;
    font-size: 0.9rem;
}

.car-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.car-conditions {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.car-conditions h4 {
    color: #f985ff;
    margin-bottom: 0.5rem;
}

.car-conditions ul {
    list-style: none;
    font-size: 0.9rem;
}

.car-conditions li {
    padding: 0.2rem 0;
    color: #ccc;
}

.car-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #85deff;
    margin-bottom: 1rem;
}

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

.service-card {
    text-align: center;
    padding: 2rem;
    background: rgba(42, 42, 42, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(133, 222, 255, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-section {
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form-container h2,
.contact-info h2 {
    margin-bottom: 2rem;
    color: #f985ff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #85deff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #444;
    border-radius: 5px;
    background: rgba(42, 42, 42, 0.5);
    color: #e0e0e0;
    font-family: 'Oswald', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f985ff;
    box-shadow: 0 0 0 2px rgba(249, 133, 255, 0.2);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(42, 42, 42, 0.5);
    border-radius: 10px;
}

.contact-icon {
    font-size: 2rem;
    color: #85deff;
}

.contact-details h3 {
    color: #f985ff;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #e0e0e0;
    text-decoration: none;
}

.contact-details a:hover {
    color: #85deff;
}

.contact-details small {
    color: #888;
    font-size: 0.9rem;
}

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

.faq-item {
    padding: 2rem;
    background: rgba(42, 42, 42, 0.5);
    border-radius: 10px;
    border-left: 4px solid #85deff;
}

.faq-item h3 {
    color: #f985ff;
    margin-bottom: 1rem;
}

.emergency-contact {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(249, 133, 255, 0.1), rgba(133, 222, 255, 0.1));
    border-radius: 10px;
}

.emergency-number {
    margin: 2rem 0;
}

/* Legal Pages */
.legal-content {
    padding: 3rem 0;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-document h2 {
    color: #f985ff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-document h3 {
    color: #85deff;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-document ul,
.legal-document ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
}

.legal-document a {
    color: #85deff;
    text-decoration: none;
}

.legal-document a:hover {
    color: #f985ff;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: rgba(42, 42, 42, 0.3);
    border-radius: 5px;
    overflow: hidden;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #444;
}

.cookies-table th {
    background: rgba(249, 133, 255, 0.1);
    color: #f985ff;
    font-weight: 600;
}

/* Thanks Page */
.thanks-section {
    padding: 8rem 0 4rem;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 5rem;
    color: #85deff;
    margin-bottom: 2rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: #85deff;
    margin-bottom: 3rem;
}

.form-details {
    background: rgba(42, 42, 42, 0.5);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
}

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

.detail-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.next-steps {
    margin: 3rem 0;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background: rgba(42, 42, 42, 0.5);
    border-radius: 10px;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #85deff;
}

.emergency-info {
    background: linear-gradient(135deg, rgba(249, 133, 255, 0.1), rgba(133, 222, 255, 0.1));
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.emergency-info a {
    color: #f985ff;
    text-decoration: none;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

.related-item {
    text-align: center;
    padding: 2rem;
    background: rgba(42, 42, 42, 0.5);
    border-radius: 10px;
}

.related-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #85deff;
}

/* CTA Sections */
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #1a1a1a;
    margin: 0% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid rgba(249, 133, 255, 0.2);
}

.modal-content h3 {
    color: #f985ff;
    margin-bottom: 1.5rem;
}

.close {
    color: #888;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    cursor: pointer;
}

.close:hover {
    color: #f985ff;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.cookie-option {
    margin: 1rem 0;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
option {
    background-color: #0a0a0a;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    z-index: 1500;
    border-top: 1px solid rgba(249, 133, 255, 0.2);
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        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;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .company-grid,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        flex-direction: column;
    }

    .banner-features {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .about-stats-large {
        grid-template-columns: 1fr;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
}

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

    h1 {
        font-size: 2rem;
    }

    .banner-content h1 {
        font-size: 1.8rem;
    }

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

    .modal-content {
        margin: 0% auto;
        padding: 1.5rem;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
    .cookies-table {
        display: none;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

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

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

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

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

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

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