/* ================== New Pricing Page Sections ================== */

/* Modern Mobile Navigation */

#hamburger {
    display: none;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    position: relative;
}

#hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

#hamburger span:nth-child(1) {
    top: 0;
}

#hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

#hamburger span:nth-child(3) {
    bottom: 0;
}

#hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

#hamburger.active span:nth-child(2) {
    opacity: 0;
}

#hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.second-nav {
    display: none;
    list-style: none;
    flex-direction: column;
    top: 80px;
    width: 90%;
    max-width: 400px;
    height: max-content;
    position: fixed;
    z-index: 9999;
    background: rgba(30, 30, 30, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(106, 13, 173, 0.3);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
    overflow: hidden;
}

.second-nav.active-second-nav {
    display: flex;
    animation: slideDownMobile 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slideDownMobile {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.second-nav-li {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    width: 100%;
    height: max-content;
    text-align: center;
    font-size: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.second-nav-li:last-child {
    border-bottom: none;
}

.second-nav-li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(106, 13, 173, 0.2), transparent);
    transition: width 0.4s ease;
    z-index: -1;
}

.second-nav-li:hover::before {
    width: 100%;
}

.second-nav-li:hover {
    color: #6a0dad;
    transform: translateX(5px);
}

.second-nav-li a {
    color: inherit;
    text-decoration: none;
    display: block;
    padding: 18px 0;
    width: 100%;
}

@media (max-width: 768px) {
    #hamburger {
        display: inline-block;
    }

    #first-nav {
        display: none;
    }
}

/* Currency Toggle Section */
.pricing-toggle-section {
    padding: 20px 0;
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.currency-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.currency-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f0f0f0; /* Increased contrast from #e0e0e0 */
    transition: color 0.3s ease;
}

.currency-label.active {
    color: #ffffff; /* Increased contrast */
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background: linear-gradient(135deg, #5628ee, #6a0dad);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

/* Pricing Hero Section */
.pricing-purchase-hero {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9), rgba(26, 26, 26, 0.95)), 
                url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    padding: 100px 0;
    text-align: center;
    position: relative;
    height: 80vh;
    width: 100%;
}

.pricing-purchase-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff; /* Increased contrast from previous values */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.pricing-purchase-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #e0e0e0; /* Increased contrast from #b0b0b0 */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Pricing Card Updates */
.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6a0dad;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.pricing-card .price .period {
    font-size: 1.2rem;
    color: #d0d0d0; /* Increased contrast from #b0b0b0 */
    font-weight: 400;
}

/* Features Comparison Section */
.features-comparison-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.features-comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(106, 13, 173, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(86, 40, 238, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.features-comparison-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-comparison-section .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #6a0dad;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #6a0dad;
    background-clip: unset;
}

.features-comparison-section .section-header p {
    font-size: 1.2rem;
    color: #e0e0e0; /* Increased contrast from #b0b0b0 */
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: rgba(106, 13, 173, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-header .feature-name {
    font-weight: 600;
    color: #fff;
    padding: 20px;
}

.table-header .plan-name {
    font-weight: 600;
    color: #6a0dad;
    padding: 20px;
    text-align: center;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.table-row .feature-name {
    color: #d0d0d0; /* Increased contrast from #b0b0b0 */
    padding: 20px;
    font-weight: 500;
}

.table-row .plan-feature {
    padding: 20px;
    text-align: center;
    color: #ffffff; /* Ensuring white color for better contrast */
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-row .plan-feature i.fa-check {
    color: #4ecdc4;
    font-size: 1.2rem;
}

.table-row .plan-feature i.fa-times {
    color: #ff6b6b;
    font-size: 1.2rem;
}

/* Responsive styles for comparison table */
@media (max-width: 768px) {
    .comparison-table {
        border-radius: 15px;
    }
    
    .table-header {
        grid-template-columns: 2fr 1fr 1fr;
        font-size: 0.9rem;
    }
    
    .table-header .plan-name:last-child {
        display: none;
    }
    
    .table-row {
        grid-template-columns: 2fr 1fr 1fr;
        font-size: 0.9rem;
    }
    
    .table-row .plan-feature:last-child {
        display: none;
    }
    
    .table-header .feature-name,
    .table-row .feature-name,
    .table-header .plan-name,
    .table-row .plan-feature {
        padding: 15px 10px;
    }
}

@media (max-width: 480px) {
    .features-comparison-section {
        padding: 60px 0;
    }
    
    .features-comparison-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .features-comparison-section .section-header p {
        font-size: 1rem;
    }
    
    .comparison-table {
        border-radius: 10px;
    }
    
    .table-header {
        grid-template-columns: 1fr 1fr 1fr;
        font-size: 0.7rem;
    }
    
    .table-header .plan-name:last-child {
        display: none;
    }
    
    .table-row {
        grid-template-columns: 1fr 1fr 1fr;
        font-size: 0.7rem;
    }
    
    .table-row .plan-feature:last-child {
        display: none;
    }
    
    .table-header .feature-name,
    .table-row .feature-name,
    .table-header .plan-name,
    .table-row .plan-feature {
        padding: 10px 6px;
    }
    
    /* Show only important features on very small screens */
    .table-row.important-feature {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Testimonials Section */
.pricing-testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.pricing-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(106, 13, 173, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(86, 40, 238, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-testimonials-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-testimonials-section .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #e0e0e0); /* Increased contrast */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-testimonials-section .section-header p {
    font-size: 1.2rem;
    color: #e0e0e0; /* Increased contrast from #b0b0b0 */
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(106, 13, 173, 0.3);
    box-shadow: 0 15px 40px rgba(106, 13, 173, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 5rem;
    color: rgba(106, 13, 173, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.author-info h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    color: #6a0dad;
    margin: 0;
    font-size: 0.9rem;
}

/* FAQ Section */
.pricing-faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.pricing-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(106, 13, 173, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(86, 40, 238, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-faq-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-faq-section .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #e0e0e0); /* Increased contrast */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-faq-section .section-header p {
    font-size: 1.2rem;
    color: #e0e0e0; /* Increased contrast from #b0b0b0 */
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(106, 13, 173, 0.5);
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.2);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.faq-question i {
    color: #6a0dad;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #e0e0e0; /* Increased contrast from #b0b0b0 */
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

/* CTA Section */
.pricing-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.pricing-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(106, 13, 173, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-cta-section .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(106, 13, 173, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.pricing-cta-section .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform: translateY(0);
}

.pricing-cta-section .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
    transition: width 0.5s ease;
    z-index: -1;
    border-radius: 50px;
}

.pricing-cta-section .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(106, 13, 173, 0.6), 0 0 30px rgba(106, 13, 173, 0.4);
}

.pricing-cta-section .cta-button:hover::before {
    width: 100%;
}

/* footer section styling */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 60px 0 20px;
    color: #fff;
    position: relative;
    border-top: 1px solid rgba(106, 13, 173, 0.3);
    box-shadow: 0 -5px 30px rgba(106, 13, 173, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6a0dad, #5628ee, #6a0dad, transparent);
}

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

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

.footer-column h3.footer-logo {
    font-size: 1.8rem;
    color: #6a0dad;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-column h4 {
    font-size: 1.3rem;
    color: #6a0dad;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    border-radius: 2px;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-contact p {
    color: #b0b0b0;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: #6a0dad;
    margin-right: 10px;
    width: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a::before {
    content: '→';
    margin-right: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #6a0dad;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-newsletter-text {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-newsletter-form {
    display: flex;
    max-width: 100%;
    gap: 10px;
    margin-bottom: 25px;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(106, 13, 173, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.footer-newsletter-form input:focus {
    border-color: #6a0dad;
    box-shadow: 0 0 20px rgba(106, 13, 173, 0.3);
}

.footer-newsletter-form button {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-newsletter-form button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(106, 13, 173, 0.5);
}

.footer-social h4 {
    margin-top: 20px;
    margin-bottom: 15px;
}

.social-media {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.social-media a {
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

/* Social media specific background colors on hover */
.social-media a:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.4);
}

.social-media a[href*="instagram.com"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-media a[href*="github.com"]:hover {
    background: linear-gradient(45deg, #24292e, #343a40);
}

.social-media a[href*="twitter.com"]:hover,
.social-media a[href*="x.com"]:hover {
    background: linear-gradient(45deg, #1da1f2, #0d8bd9);
}

.social-media a[href*="linkedin.com"]:hover {
    background: linear-gradient(45deg, #0077b5, #00a0dc);
}

.social-media a[href*="youtube.com"]:hover {
    background: linear-gradient(45deg, #ff0000, #cc0000);
}

.social-media a[href*="facebook.com"]:hover {
    background: linear-gradient(45deg, #4267B2, #3b5998);
}

.social-media a[href*="dribbble.com"]:hover {
    background: linear-gradient(45deg, #ea4c89, #d6356c);
}

.social-media a[href*="behance.net"]:hover {
    background: linear-gradient(45deg, #1769ff, #0057e7);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
}

.footer-links-bottom a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #6a0dad;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links-bottom {
        justify-content: center;
    }
    
    .footer-column h3.footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-column h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-newsletter-form {
        flex-direction: column;
    }

    .footer-newsletter-form input,
    .footer-newsletter-form button {
        width: 100%;
    }

    .footer-newsletter-form button {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .footer-column h3.footer-logo {
        font-size: 1.3rem;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
    }
    
    .social-media {
        justify-content: center;
    }
}
