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

body {
    font-family: Arial, sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #f5f5f5;
    font-size: 16px;
}

/* Section H2 Styles */
h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

/* Anchor Link Styles */
a {
    color: #ff6b35;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo .brand {
    font-size: 28px;
    color: #ff6b35;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-decoration: none;
}

.logo .brand:hover {
    color: #e55a2b;
    transition: color 0.3s ease;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
}

.nav ul li a {
    text-decoration: none;
    color: #333;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav ul li a:hover {
    background-color: #f0f0f0;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn-signin {
    text-decoration: none;
    color: #333;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-signin:hover {
    background-color: #f0f0f0;
}

.btn-signup {
    text-decoration: none;
    color: #fff;
    background-color: #ff6b35;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-signup:hover {
    background-color: #e55a2b;
}

/* Hero Section Styles */
.hero {
    background-image: url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 200px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.hero-content h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: Arial, sans-serif;
    font-weight: 400;
}

.btn-primary {
    display: inline-block;
    background-color: #ff6b35;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e55a2b;
}

/* Why Choose Section Styles */
.why-choose {
    padding: 40px 0;
    background-color: #ff6b35;
    text-align: center;
}

.why-choose h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    flex: 1;
    min-width: 150px;
    padding: 15px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 12px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 600;
}

.feature-item p {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

/* What Makes Us Different Section Styles */
.different {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.different h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.different p {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 18px;
}

/* Action Section Styles */
.action-section {
    padding: 40px 0;
    background-color: #ff6b35;
    color: #fff;
}

.action-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.action-text h2 {
    margin: 0;
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.btn-action {
    display: inline-block;
    padding: 15px 30px;
    background-color: #fff;
    color: #ff6b35;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-action:hover {
    transform: translateY(-3px);
}

/* Designed For Section Styles */
.designed-for {
    padding: 60px 0;
    background-color: #fff;
}

.designed-for h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.designed-for > p {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 18px;
}

.designed-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.designed-image {
    flex: 1;
    min-width: 300px;
}

.design-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.designed-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.designed-text p {
    margin-bottom: 24px;
    color: #333;
    line-height: 1.8;
    font-size: 18px;
}

/* Sugar Dating Options Section Styles */
.sugar-dating-options {
    padding: 60px 0;
    background-color: #fff;
}

.dating-option {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.option-image {
    flex: 1;
    min-width: 300px;
}

.option-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.option-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.option-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ff6b35;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.option-text p {
    color: #333;
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 15px;
}

/* How It Works Section Styles */
.how-it-works {
    padding: 60px 0;
    background-color: #fff;
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.how-it-works > p {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 18px;
}

.how-it-works .btn-primary {
    display: block;
    margin: 0 auto 40px;
    width: 200px;
    text-align: center;
}

.how-it-works-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.how-it-works-image {
    flex: 1;
    min-width: 300px;
}

.how-it-works-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.step-item {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: #ff6b35;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff6b35;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.step-item p {
    color: #666;
    line-height: 1.8;
    font-size: 18px;
}

/* Advantages Section Styles */
.advantages {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.advantages h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.advantages > p {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 18px;
}

.advantages > p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 18px;
}

.advantages-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.advantages-image {
    flex: 1;
    min-width: 300px;
}

.advantages-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.advantages-list {
    flex: 1;
    min-width: 300px;
}

.advantage-item {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.advantage-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ff6b35;
    font-weight: bold;
}

.advantage-item p {
    color: #666;
    line-height: 1.8;
    font-size: 18px;
}

.advantages-list {
    flex: 1.2;
    min-width: 350px;
}

/* Senior Benefits Section Styles */
.senior-benefits {
    padding: 60px 0;
    background-color: #fff;
}

.senior-benefits h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.senior-benefits > p {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 18px;
    color: #666;
}

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

.benefit-item {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ff6b35;
}

.benefit-item p {
    color: #666;
    line-height: 1.8;
    font-size: 18px;
}

/* App Section Styles */
.app-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.app h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.app > p {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 18px;
}

.app-section > p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 18px;
}

.app-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.app-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.app-screenshot {
    max-width: 250px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.app-features {
    flex: 1;
    min-width: 300px;
}

.app-features h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ff6b35;
}

.app-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.app-features ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
}

.app-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

/* Premium Features Section Styles */
.premium-features {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.premium-features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.premium-features > p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 18px;
}

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

.feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ff6b35;
}

.feature-card h3 {
    font-size: 20px;
    margin: 0;
    color: #333;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
    font-size: 18px;
}

/* Cities Section Styles */
.cities-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.cities-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.cities-section > p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 18px;
}

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

.city-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

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

.city-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.city-card:hover .city-img {
    transform: scale(1.05);
}

.city-content {
    padding: 20px;
}

.city-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.city-content p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* Testimonials Section Styles */
.testimonials {
    padding: 60px 0;
    background-color: #fff;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.testimonials > p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 18px;
}

.testimonials > p strong {
    color: #ff6b35;
    font-weight: bold;
}

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

.testimonial-item {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    color: #333;
    font-size: 16px;
    font-weight: bold;
}

.author-info p {
    margin: 5px 0 0;
    color: #666;
    font-size: 14px;
}

.testimonial-item p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
    font-size: 18px;
}

.testimonial-item p strong {
    color: #ff6b35;
    font-weight: bold;
}

.rating {
    color: #ffd700;
    font-size: 18px;
    font-weight: bold;
}

.rating span {
    letter-spacing: 2px;
}

/* About Section Styles */
.about-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.about h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.about > p {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 18px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.about-images {
    flex: 1;
    min-width: 300px;
    margin-bottom: 30px;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    height: 300px;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about-image:nth-child(1) {
    grid-row: 1 / 3;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.about-text p {
    margin-bottom: 24px;
    color: #333;
    line-height: 1.8;
    font-size: 18px;
}

.about-text strong {
    color: #ff6b35;
    font-weight: bold;
}

/* FAQ Section Styles */
.faq-section {
    padding: 60px 0;
    background-color: #fff;
}

/* Call to Action Section Styles */
.cta-section {
    padding: 60px 0;
    background-color: #333;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.6;
}

.cta-section p strong {
    color: #ff6b35;
    font-weight: bold;
}

.btn-cta {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff6b35;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-cta:hover {
    background-color: #e55a2a;
    transform: translateY(-3px);
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.faq-section > p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
    color: #333;
    font-weight: 600;
}

.faq-icon {
    font-size: 20px;
    color: #ff6b35;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #fff;
}

.faq-answer p {
    margin: 0;
    padding: 20px 0;
    color: #666;
    line-height: 1.8;
    font-size: 18px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Values Section Styles */
.values {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.values h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

.value-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.value-icon {
    font-size: 48px;
    color: #ff6b35;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.value-item p {
    line-height: 1.8;
    color: #666;
}

/* Team Section Styles */
.team {
    padding: 60px 0;
    background-color: #fff;
}

.team h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
}

.team-image {
    margin-bottom: 20px;
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}

.team-member h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.team-member p {
    color: #666;
    font-size: 14px;
}

/* Footer Styles */
.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 60px 0 40px;
}

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

.footer-about h3 {
    margin-bottom: 20px;
}

.footer-brand {
    color: #ff6b35;
    font-weight: bold;
    text-decoration: none;
}

.footer-brand:hover {
    color: #ff6b35;
    text-decoration: none;
}

.footer-about p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ccc;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff6b35;
}

.footer-quick-links h4,
.footer-legal h4,
.footer-locations h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-quick-links ul,
.footer-legal ul,
.footer-locations ul {
    list-style: none;
    padding: 0;
}

.footer-quick-links li,
.footer-legal li,
.footer-locations li {
    margin-bottom: 12px;
}

.footer-quick-links a,
.footer-legal a,
.footer-locations a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-quick-links a:hover,
.footer-legal a:hover,
.footer-locations a:hover {
    color: #ff6b35;
}

.footer-locations i {
    margin-right: 8px;
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 14px;
}

.footer-bottom a {
    color: #ff6b35;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-description {
    text-align: center;
    margin-bottom: 60px;
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-post {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #999;
}

.blog-date {
    display: flex;
    align-items: center;
}

.blog-category {
    display: flex;
    align-items: center;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    color: #ff6b35;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #e55a2b;
}

.blog-read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pagination-prev, .pagination-next, .pagination-page {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.pagination-prev:hover, .pagination-next:hover, .pagination-page:hover {
    background-color: #f0f0f0;
}

.pagination-page.active {
    background-color: #ff6b35;
    color: #fff;
}

/* Philosophy Section */
.philosophy {
    padding: 80px 0;
    background-color: #fff;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Stats Section */
.stats {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

/* Key Features Section */
.features {
    padding: 30px 0;
    background-color: #ff6b35;
}

.features h2 {
    margin-top: 40px;
}

.features .feature-item h3 {
    color: #ffffff;
}

.features .feature-item p {
    color: #ffffff;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #fff;
}

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

.testimonial-item {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

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

.testimonial-name {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-location {
    font-size: 14px;
    color: #999;
}

/* Why Choose Section */
.why-choose {
    padding: 20px 0;
    background-color: #ff6b35;
}

.why-choose-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-choose-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* App Steps Section */
.app-steps {
    padding: 80px 0;
}

/* App Features Section */
.app-features {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.app-features .feature-item p {
    color: #000;
}

.app-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.app-features .feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-features .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.app-features .feature-icon {
    width: 60px;
    height: 60px;
    background-color: #ff6b35;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.app-features .feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.app-features .feature-item p {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
}

/* App Benefits Section */
.app-benefits {
    padding: 80px 0;
}

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

.benefit-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: #ff6b35;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* App Platform Sections */
.app-platform {
    padding: 80px 0;
    background-color: #fff;
}

.app-platform-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.app-image {
    flex: 1;
    min-width: 300px;
}

.app-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.app-info {
    flex: 1;
    min-width: 300px;
}

.app-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.app-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.app-info li i {
    color: #ff6b35;
    font-size: 18px;
}

.ios-content {
    flex-direction: row-reverse;
}

/* Download Section */
.download {
    padding: 80px 0;
    text-align: center;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    color: #333;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.download-btn i {
    font-size: 32px;
}

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

.download-text span {
    display: block;
    font-size: 14px;
}

.download-text strong {
    font-size: 18px;
    font-weight: 700;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff6b35;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #e55a2b;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header */
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
    }
    
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    
    .nav ul li a {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .header-buttons {
        gap: 8px;
    }
    
    .btn-signin,
    .btn-signup {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content h2 {
        font-size: 18px;
    }
    
    /* Sections */
    section {
        padding: 40px 0;
    }
    
    h2 {
        font-size: 24px !important;
    }
    
    /* How It Works */
    .how-it-works-content {
        flex-direction: column;
    }
    
    .how-it-works-image,
    .steps {
        width: 100%;
    }
    
    /* Features */
    .features,
    .steps,
    .advantage-items,
    .footer-content,
    .benefits-grid,
    .premium-features-grid,
    .testimonials-grid,
    .faq-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        gap: 30px;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-action {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Typography */
    body {
        font-size: 16px;
    }
    
    p {
        font-size: 16px;
    }
}