/* My Sugar Mummy - Main Stylesheet */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    z-index: 1001;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    order: 2;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Navigation Styles */
nav {
    position: relative;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 0;
    display: block;
}

nav a:hover {
    color: #ffeb3b;
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 160px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(233, 30, 99, 0.8), rgba(156, 39, 176, 0.8)), url('images/mysugarmummyhero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #ff5722;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.cta-button:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #e91e63, #9c27b0);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    nav li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    nav li:last-child {
        border-bottom: none;
    }
    
    nav a {
        padding: 15px 0;
        font-size: 1.1rem;
        text-align: center;
    }
    
    .header-container {
        padding: 0 15px;
        justify-content: space-between;
    }
    
    .logo {
        font-size: 1.5rem;
        order: 1;
    }
    
    .logo img {
        width: 35px;
        height: 35px;
    }
    
    .mobile-menu-toggle {
        order: 2;
        margin-left: auto;
    }
    
    /* Ensure main content is not hidden behind mobile menu */
    main {
        margin-top: 70px;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Card Styles */
.card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card p {
    color: #666;
    line-height: 1.6;
}

/* Member Profile Cards */
.member-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
}

.member-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-info {
    padding: 20px;
}

.member-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.member-info p {
    color: #666;
    margin-bottom: 5px;
}

.member-status {
    display: inline-block;
    background: #4caf50;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Country Cards */
.country-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.country-card:hover {
    transform: translateY(-5px);
}

.country-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.country-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.country-info h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: bold;
}

.country-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
    font-size: 14px;
}

.country-link {
    display: inline-block;
    background: #e91e63;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
    margin-top: auto;
    border: 2px solid #e91e63;
}

.country-link:hover {
    background: #c2185b;
    border-color: #c2185b;
}

/* Blog Styles */
.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.blog-post img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.blog-meta {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #e91e63;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #c2185b;
}

/* FAQ Styles */
.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    font-weight: bold;
    color: #2c3e50;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    padding: 20px;
    color: #666;
    line-height: 1.6;
}

/* Pricing Styles */
.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid #e91e63;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #e91e63;
    margin-bottom: 10px;
}

.price-period {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
}

.features {
    list-style: none;
    margin-bottom: 30px;
}

.features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 14px;
}

.features li:last-child {
    border-bottom: none;
}

.grid-1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Price Options Styles */
.price-options {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.price-option {
    flex: 1;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 200px;
}

.price-option:hover {
    border-color: #e91e63;
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
}

.price-option.active {
    border-color: #e91e63;
    background: #fff;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.price-option .duration {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.price-option .price {
    font-size: 2rem;
    font-weight: bold;
    color: #e91e63;
    margin-bottom: 5px;
}

.price-option .savings {
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 500;
}

.savings {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Country card link styles */
.card a {
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.card a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card a:hover h3 {
    color: #e91e63;
    transition: color 0.3s ease;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #e91e63;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .price-options {
        flex-direction: column;
        gap: 15px;
    }
    
    .price-option {
        min-width: auto;
    }
    
    main {
        margin-top: 120px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .card {
        padding: 20px;
    }
    
    section {
        padding: 40px 0;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

/* Special Sections */
.testimonials {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.testimonials .card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.testimonials .card h4 {
    color: white;
}

.testimonials .card p {
    color: white;
}

.stats {
    background: #2c3e50;
    color: white;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #e91e63;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    margin-top: 10px;
}

/* App Download Section */
.app-download {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.app-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.app-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Language Flags */
.language-flag {
    width: 30px;
    height: 20px;
    margin-right: 10px;
    border-radius: 3px;
}

/* Success Stories */
.success-story {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.story-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
}

.story-info h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.story-info p {
    color: #666;
    font-size: 0.9rem;
}

.story-content {
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #e91e63;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Additional Styles for BBW and other pages */

/* Navbar Styles */
.navbar {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ffeb3b;
}

/* Hero Section Styles */
.hero-section {
    min-height: 80vh;
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 40px;
}

.hero-content h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.5rem;
    color: #e91e63;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.column h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 30px;
}

.column h3:first-child {
    margin-top: 0;
}

.column p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.column img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Tips List */
.tips-list {
    margin-top: 40px;
}

.tip-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-2px);
}

.tip-item h3 {
    font-size: 1.3rem;
    color: #e91e63;
    margin-bottom: 15px;
}

.tip-item p {
    color: #666;
    line-height: 1.6;
}

/* Member Grid */
.member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 18px 40px;
}

/* Background Light */
.bg-light {
    background-color: #f8f9fa;
}

/* Content Section */
.content-section {
    padding: 60px 0;
}

.content-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.content-section p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Testimonials */
.testimonial {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial blockquote {
    font-style: italic;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.6;
    border: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.testimonial p {
    font-style: italic;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial cite {
    color: #e91e63;
    font-weight: bold;
    font-style: normal;
}

/* FAQ Section */
.faq-categories {
    margin-bottom: 40px;
}

.category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.category-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #495057;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.category-btn:hover {
    background: #e91e63;
    color: white;
    border-color: #e91e63;
}

.category-btn.active {
    background: #e91e63;
    color: white;
    border-color: #e91e63;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h2 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

.faq-section {
    margin-top: 40px;
}

.faq-section .faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 25px;
    transition: transform 0.3s ease;
}

.faq-section .faq-item:hover {
    transform: translateY(-2px);
}

.faq-section .faq-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-section .faq-item p {
    color: #666;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

/* Contact Options */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Help Topics */
.help-topics {
    margin-top: 40px;
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.topic-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #e91e63;
}

.topic-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.topic-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.topic-card p {
        color: #666;
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
    }

/* Blog Styles */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.header-container .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.header-container .logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

.header-container nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.header-container nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-container nav a:hover,
.header-container nav a.active {
    color: #ffeb3b;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    background: #e91e63;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    width: fit-content;
}

.blog-content h3 {
    margin-bottom: 15px;
    flex-grow: 1;
}

.blog-content h3 a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 1.4;
}

.blog-content h3 a:hover {
    color: #e91e63;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.blog-date,
.blog-read-time {
    color: #999;
    font-size: 12px;
    font-weight: 500;
}

.app-download {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.app-download .section-title {
    color: white;
}

.app-download p {
    color: white;
}

.app-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.app-button {
    background: white;
    color: #e91e63;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.app-button:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Responsive Design for new elements */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 80px 15px 40px;
    }
    
    .hero-container {
        flex-direction: column;
    }
    
    .hero-content {
        margin-right: 0;
        margin-bottom: 40px;
        order: 1;
    }
    
    .hero-image {
        order: 2;
        margin-top: 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid,
    .member-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #e91e63, #9c27b0);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 15px 0;
        font-size: 1.1rem;
        display: block;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    /* Blog responsive styles */
    .header-container {
        padding: 0 15px;
        position: relative;
    }
    
    .header-container nav ul {
        gap: 0;
        padding: 20px;
    }
    
    .header-container nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #e91e63, #9c27b0);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    .header-container nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .blog-card img {
        height: 150px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-button {
         width: 200px;
         text-align: center;
     }
     
     /* Special mobile styles for au.html and it.html hero sections */
     .hero-section .hero-content {
         order: 1;
         display: flex;
         flex-direction: column;
     }
     
     .hero-section .hero-stats {
         order: 2;
         margin-top: 30px;
         display: flex;
         flex-direction: column;
         gap: 15px;
     }
     
     .hero-section .stat {
         text-align: center;
     }
 }

/* Additional mobile styles for pages with different hero structure */
@media (max-width: 768px) {
    /* For au.html and it.html - ensure proper mobile layout */
    .hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 80px 15px 40px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .hero-section h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .hero-section p {
        font-size: 1.1rem;
        margin-bottom: 25px;
        max-width: 90%;
    }
 }

/* Success Stories Styles */
.success-story {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.story-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.story-info h4 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.story-info p {
    margin: 5px 0 0 0;
    color: #666;
    font-size: 14px;
}

.story-content {
    color: #555;
    line-height: 1.6;
    font-style: italic;
    font-size: 16px;
}

/* FAQ Styles */
.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-answer {
     padding: 20px;
     color: #666;
     line-height: 1.6;
     background: white;
 }

/* FAQ Container and Toggle Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-question {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    flex: 1;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #e91e63;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
}

.faq-answer p {
     margin: 0;
     padding: 0;
 }

/* App Page Styles */
.hero-section {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 100px 20px 50px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
}

.hero-content {
    flex: 1;
    margin-right: 50px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.app-download-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.app-download-buttons .app-button {
    transition: transform 0.3s ease;
}

.app-download-buttons .app-button:hover {
    transform: translateY(-5px);
}

.content-section {
    padding: 80px 20px;
}

.content-section.bg-light {
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.app-features {
    margin-top: 40px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.feature-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-content ul {
    list-style: none;
    padding: 0;
}

.feature-image {
    flex: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-card h3 {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 10px;
}

.stat-card p {
    color: #666;
    font-size: 1.1rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.requirement-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.requirement-card h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.steps-guide {
    margin-top: 40px;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step h3 {
    color: #e91e63;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.step p {
    color: #666;
    line-height: 1.6;
}

.premium-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.premium-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.premium-card h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.premium-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.faq-section {
    margin-top: 40px;
}

.faq-section .faq-item {
    margin-bottom: 20px;
}

.faq-section .faq-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.faq-section .faq-item p {
    color: #666;
    line-height: 1.6;
}

/* App-specific Styles */

/* App Download Buttons */
.app-download-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.app-button {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-button:hover {
    transform: scale(1.05);
}

.app-button img {
    height: 60px;
    width: auto;
}

/* App Features */
.app-features {
    margin-top: 40px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-content ul {
    list-style: none;
    padding: 0;
}

.feature-content ul li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.feature-content ul li:before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 10px;
    font-weight: bold;
}

.stat-card p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.requirement-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
}

.requirement-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.requirement-card ul {
    list-style: none;
    padding: 0;
}

.requirement-card ul li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.requirement-card ul li:before {
    content: "•";
    color: #e91e63;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Steps Guide */
.steps-guide {
    margin-top: 40px;
}

.step {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-2px);
}

.step h3 {
    font-size: 1.3rem;
    color: #e91e63;
    margin-bottom: 15px;
}

.step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Premium Features */
.premium-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.premium-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.premium-card:hover {
    transform: translateY(-5px);
    border-color: #e91e63;
}

.premium-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.premium-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.premium-card ul li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.premium-card ul li:before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e91e63;
    margin: 0;
}

/* Rating */
.rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Etiquette Grid Styles */
.etiquette-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.etiquette-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #e91e63;
}

.etiquette-card:hover {
    transform: translateY(-5px);
}

.etiquette-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.etiquette-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.etiquette-card ul li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    line-height: 1.5;
}

.etiquette-card ul li:before {
    content: "•";
    color: #e91e63;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Tips Grid Styles */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.tip-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #e91e63;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: bold;
}

.tip-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tip-card ul li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.tip-card ul li:before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Legal Info Styles */
.legal-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.legal-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #9c27b0;
}

.legal-card:hover {
    transform: translateY(-3px);
}

.legal-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Testimonial Image Fixes */
.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    border: 3px solid #e91e63;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* CTA Buttons Styles */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: #e91e63;
}

/* Responsive Design for app-specific elements */
@media (max-width: 768px) {
    .app-download-buttons {
        justify-content: center;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .feature-row.reverse {
        direction: ltr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .requirements-grid,
    .premium-features {
        grid-template-columns: 1fr;
    }
    
    .stat-card h3 {
        font-size: 2.5rem;
    }
    
    /* Responsive styles for new grids */
    .etiquette-grid,
    .tips-grid,
    .legal-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 250px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .app-button img {
        height: 50px;
    }
    
    .feature-row {
        padding: 20px 15px;
    }
    
    .stat-card {
        padding: 30px 15px;
    }
    
    .premium-card {
        padding: 30px 20px;
    }
    
    /* Mobile responsive styles for new elements */
    .etiquette-card,
    .tip-card,
    .legal-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .etiquette-card h3,
    .tip-card h3,
    .legal-card h3 {
        font-size: 1.1rem;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .testimonial img {
        width: 60px;
        height: 60px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tip-card {
        min-width: auto;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Card Icon and Feature Icon Styles */
.card-icon, .feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    text-align: center;
    line-height: 1;
}

.card-icon {
    margin-bottom: 25px;
}

.feature-icon {
    margin-bottom: 20px;
}