:root {
    --primary-color: #1a1a1a;
    --primary-dark: #000000;
    --primary-light: #333333;
    --secondary-color: #F59E0B;
    --secondary-dark: #D97706;
    --gold: #FFD700;
    --dark: #1F2937;
    --darker: #111827;
    --gray: #6B7280;
    --light-gray: #9CA3AF;
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --gradient-primary: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #FFD700 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.highlight {
    color: var(--primary-color);
}

.section-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--darker);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.countries-section .section-header {
    max-width: 1000px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--darker);
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-outline {
    background: #2c333cf7;
    color: #ffffff;
    border: 2px solid #f59e0b;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-dark {
    background: var(--darker);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-dark:hover {
    background: var(--dark);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-login {
    color: var(--white);
    margin-right: 12px;
}

.btn-login:hover {
    color: var(--primary-light);
}

.btn-signup {
    background: var(--gradient-gold);
    color: var(--darker);
}

.btn-signup:hover {
    transform: translateY(-2px);
}

.header {
    background: var(--darker);
    padding: 16px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
}

.logo-link:hover {
    color: var(--gold);
}

.logo i {
    color: var(--gold);
    font-size: 28px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-light);
}

.nav-buttons {
    display: flex;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.25) 0%, rgba(0, 0, 0, 0.27) 100%),
                url('../img/banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.39) 0%, rgba(0, 0, 0, 0.63) 100%);
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 600px;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 30px;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--gold);
}

.hero-badge span {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: var(--gold);
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.hero-stats .stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.intro-section {
    padding: 100px 0;
    background: var(--off-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.intro-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.intro-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.intro-icon i {
    font-size: 32px;
    color: var(--white);
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--darker);
}

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

.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-centered {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-centered .section-badge {
    margin-bottom: 24px;
}

.about-centered h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--darker);
}

.about-centered p {
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.8;
    font-size: 18px;
}

.about-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--darker);
}

.about-content > p {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-list {
    margin-bottom: 32px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--dark);
}

.about-list i {
    color: var(--primary-color);
    font-size: 18px;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4/3;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.image-placeholder i {
    font-size: 64px;
    margin-bottom: 16px;
    color: var(--gold);
}

.image-placeholder span {
    font-size: 18px;
    font-weight: 600;
}

.purpose-section {
    padding: 100px 0;
    background: var(--off-white);
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.standout-section {
    padding: 100px 0;
    background: var(--white);
}

.standout-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.standout-header h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--darker);
}

.standout-header p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 17px;
}

.standout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.standout-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.standout-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.standout-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.standout-list {
    margin-bottom: 32px;
}

.standout-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--dark);
}

.standout-list i {
    color: var(--gold);
    font-size: 18px;
}

.purpose-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.purpose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.purpose-icon {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.purpose-card h3 {
    padding: 20px 20px 8px;
    font-size: 18px;
    color: var(--darker);
}

.purpose-card p {
    padding: 0 20px 20px;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

.features-section {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--off-white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    font-size: 28px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--darker);
}

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

.auth-section {
    padding: 100px 0;
    background: var(--off-white);
}

.auth-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.auth-card {
    background: var(--white);
    padding: 48px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.auth-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.auth-icon i {
    font-size: 28px;
    color: var(--white);
}

.auth-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--darker);
}

.auth-card > p {
    color: var(--gray);
    margin-bottom: 24px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-form input,
.auth-form select {
    padding: 14px 18px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.auth-form input:focus,
.auth-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.auth-link {
    display: block;
    text-align: center;
    margin-top: 16px;
    color: var(--primary-color);
    font-weight: 500;
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-terms {
    font-size: 12px;
    color: var(--gray);
    text-align: center;
    margin-top: 16px;
}

.auth-new-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.auth-new-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.auth-new-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.auth-new-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--darker);
}

.auth-new-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.auth-new-list {
    margin-bottom: 32px;
}

.auth-new-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--dark);
}

.auth-new-list i {
    color: var(--gold);
    font-size: 18px;
}

.app-section {
    padding: 100px 0;
    background: var(--darker);
    color: var(--white);
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.smartphone-case {
    width: 300px;
    height: 620px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 40px;
    padding: 10px;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
}

.smartphone-case::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
    background: #111;
    border-radius: 10px;
}

.smartphone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--dark);
    border-radius: 40px;
    padding: 12px;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.phone-screen i {
    font-size: 80px;
    margin-bottom: 16px;
    color: var(--gold);
}

.phone-screen span {
    font-size: 18px;
    font-weight: 600;
}

.app-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.app-content > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.8;
}

.app-features {
    margin-bottom: 32px;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.9);
}

.app-features i {
    color: var(--gold);
    font-size: 18px;
}

.app-buttons {
    display: flex;
    gap: 16px;
}

.countries-section {
    padding: 100px 0;
    background: var(--off-white);
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.country-button {
    display: inline-block;
    background: var(--white);
    color: var(--darker);
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
}

.country-button:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.country-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.country-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.country-info {
    padding: 20px;
    text-align: center;
}

.country-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--darker);
}

.country-info .country-members {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.country-info .country-desc {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.5;
}

.interests-section {
    padding: 100px 0;
    background: var(--white);
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.interest-card {
    position: relative;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

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

.interest-card:hover img {
    transform: scale(1.1);
}

.interest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.interest-overlay i {
    font-size: 24px;
    color: var(--gold);
}

.interest-overlay span {
    font-size: 18px;
    font-weight: 600;
}

.members-showcase {
    padding: 100px 0;
    background: var(--off-white);
}

.members-slider {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.member-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.member-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.member-info {
    padding: 20px;
}

.member-info h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--darker);
}

.member-info span {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 4px;
}

.member-info p {
    color: var(--gray);
    font-size: 14px;
}

.members-cta {
    text-align: center;
}

.reviews-section {
    padding: 100px 0;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.review-card {
    background: var(--off-white);
    padding: 40px;
    border-radius: 16px;
    transition: all 0.3s;
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.review-stars {
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.review-stars i {
    margin-right: 4px;
}

.review-card p {
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.review-author strong {
    display: block;
    color: var(--darker);
}

.review-author span {
    color: var(--gray);
    font-size: 14px;
}

.stats-section {
    padding: 80px 0;
    background: var(--gradient-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-icon i {
    font-size: 28px;
    color: var(--gold);
}

.stat-item .stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--off-white);
    border-radius: 12px;
    padding: 24px 30px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.faq-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-size: 18px;
    color: var(--darker);
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-item h3 i {
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-item p {
    color: var(--gray);
    line-height: 1.7;
    padding-left: 32px;
}

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

.faq-item.active p {
    display: block;
}

.faq-item p {
    display: none;
}

.faq-item.active p {
    display: block;
}

.final-cta {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.85) 0%, rgba(0, 0, 0, 0.85) 100%),
                url('../img/footer-bg.jpg') center/cover no-repeat;
    text-align: center;
    position: relative;
}

.cta-content h2 {
    font-size: 44px;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.blog-section {
    padding: 80px 0;
    background: var(--dark);
}

.blog-section .section-header h2 {
    color:#111827;
}

.blog-section .section-header p {
    color: #111827;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: var(--darker);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 24px;
}

.blog-category {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--darker);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 12px;
}

/* Language Section */
.language-section {
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

.language-button {
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.language-button:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.footer {
    background: var(--darker);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-color);
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 42px;
    }

    .hero-stats {
        gap: 40px;
    }

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

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

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

    .members-slider {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-menu,
    .nav-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 60px;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-content.text-center {
        max-width: 100%;
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-trust {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 16px;
    }

    .intro-grid,
    .purpose-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .app-grid,
    .auth-grid,
    .auth-new-grid,
    .standout-grid {
        grid-template-columns: 1fr;
    }

    .about-centered {
        padding: 0 10px;
    }

    .about-centered h2 {
        font-size: 26px;
    }

    .auth-new-content h2 {
        font-size: 28px;
    }

    .interests-grid,
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

    .members-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item .stat-number {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .final-cta {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .faq-grid {
        padding: 0 10px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 16px;
    }

    .country-card img {
        height: 120px;
    }

    .country-info {
        padding: 16px;
    }

    .country-info h3 {
        font-size: 16px;
    }

    .country-info .country-desc {
        font-size: 12px;
    }

    .smartphone-case {
        width: 250px;
        height: 520px;
    }
}

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

    .hero {
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 60px;
        display: flex;
        align-items: center;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-stats .stat-number {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .intro-grid,
    .purpose-grid,
    .features-grid,
    .interests-grid,
    .countries-grid,
    .members-slider {
        grid-template-columns: 1fr;
    }

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

    .members-slider {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .member-image {
        height: 160px;
    }

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

    .cta-content h2 {
        font-size: 26px;
    }

    .about-centered h2,
    .standout-content h2,
    .auth-new-content h2 {
        font-size: 24px;
    }

    .country-card img {
        height: 100px;
    }

    .smartphone-case {
        width: 200px;
        height: 420px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--darker);
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.mobile-nav {
    color:white;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    z-index: 999;
    padding: 20px 20px 20px;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-logo {
    flex: 1;
}

.mobile-logo .logo-link {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-close-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav .nav-menu a {
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
    padding: 10px 0;
    display: block;
}

.mobile-nav .nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.mobile-nav .nav-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
}

.mobile-nav .nav-buttons .btn-login {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.mobile-nav .nav-buttons .btn-signup {
    background: var(--primary-color);
    color: var(--white);
    border: none;
}

/* About Page Styles */
.mission-section {
    padding: 100px 0;
    background: var(--white);
}

.passion-section {
    padding: 100px 0;
    background: var(--light);
}

.passion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.passion-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.passion-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 32px;
}

.passion-card h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 15px;
}

.passion-card p {
    color: var(--gray);
    line-height: 1.6;
}

.how-it-works-section {
    padding: 100px 0;
    background: var(--white);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.works-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.works-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-light);
    opacity: 0.2;
    margin-bottom: 15px;
}

.works-card h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 15px;
}

.works-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .passion-grid,
    .works-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.contact-info {
    background: var(--light);
    padding: 40px;
    border-radius: 12px;
}

.contact-info h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
}

.info-content p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 15px;
}

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

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.social-icons a:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form,
    .contact-info {
        padding: 30px;
    }
}

/* Login Page Styles */
.signup-process-section {
    padding: 100px 0;
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.process-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-light);
    opacity: 0.2;
    margin-bottom: 15px;
}

.process-card h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 15px;
}

.process-card p {
    color: var(--gray);
    line-height: 1.6;
}

.process-cta {
    margin-top: 60px;
}

.values-section {
    padding: 100px 0;
    background: var(--light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 32px;
}

.value-card h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--gray);
    line-height: 1.6;
}

.login-form-section {
    padding: 100px 0;
    background: var(--white);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.form-info h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 20px;
}

.form-info p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 600;
}

.benefit-item i {
    color: var(--primary);
}

.form-container {
    background: var(--light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-container h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: center;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
}

.forgot-password {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.form-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: var(--gray);
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-light);
}

.form-divider span {
    padding: 0 15px;
    font-size: 14px;
}

.signup-link {
    text-align: center;
    margin-top: 20px;
    color: var(--gray);
}

.signup-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    text-decoration: underline;
}

.w-100 {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-container {
        padding: 30px;
    }
}

/* Blog Page Styles */
.blog-section {
    padding: 100px 0;
    background: var(--white);
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
}

.blog-header p {
    color: var(--gray);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

.blog-image {
    height: 200px;
    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: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--gray);
}

.blog-meta i {
    margin-right: 5px;
}

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

.blog-content p {
    color: #e5e5e5;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-small {
    font-size: 14px;
    padding: 8px 20px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    display: inline-block;
    padding: 10px 15px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 6px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.page-link.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.categories-section {
    padding: 100px 0;
    background: var(--light);
}

.categories-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 60px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 32px;
}

.category-card h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 10px;
}

.category-count {
    font-size: 14px;
    color: var(--gray);
}

.newsletter-section {
    padding: 100px 0;
    background: var(--darker);
    color: var(--white);
}

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

.newsletter-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .blog-header h2,
    .categories-section h2 {
        font-size: 28px;
    }
}

/* Press Page Styles */
.press-releases-section {
    padding: 100px 0;
    background: var(--white);
}

.press-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
}

.press-item {
    display: flex;
    gap: 30px;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.press-date {
    flex-shrink: 0;
    width: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
}

.date-day {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin: 5px 0;
}

.date-year {
    display: block;
    font-size: 14px;
}

.press-content {
    flex: 1;
}

.press-content h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 15px;
}

.press-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.media-coverage-section {
    padding: 100px 0;
    background: var(--light);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.coverage-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.coverage-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 32px;
}

.coverage-item h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 15px;
}

.coverage-item p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.media-kit-section {
    padding: 100px 0;
    background: var(--white);
}

.media-kit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.media-item {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.media-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 40px;
}

.media-item h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 15px;
}

.media-item p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.media-contact-section {
    padding: 100px 0;
    background: var(--light);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-details {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.contact-content h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-content p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .press-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .press-date {
        width: 120px;
        margin-bottom: 20px;
    }
    
    .coverage-grid,
    .media-kit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* US Page Styles */
.post-section {
    padding: 100px 0;
    background: var(--white);
}

.post-content {
    max-width: 1200px;
    margin: 0 auto;
}

.post-intro {
    text-align: center;
    margin-bottom: 60px;
}

.post-intro p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 18px;
}

.post-feature {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.post-feature.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 20px;
}

.feature-content h4 {
    font-size: 20px;
    color: var(--dark);
    margin: 30px 0 15px;
}

.feature-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 500;
}

.feature-list i {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-image {
    flex: 1;
    max-width: 500px;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.post-steps {
    margin-top: 80px;
}

.post-steps h3 {
    font-size: 28px;
    color: var(--dark);
    text-align: center;
    margin-bottom: 20px;
}

.post-steps p {
    text-align: center;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 18px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-light);
    opacity: 0.2;
    margin-bottom: 15px;
}

.step-card h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 14px;
    text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
    .post-feature,
    .post-feature.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-image {
        max-width: 100%;
        margin-top: 30px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-list li {
        text-align: left;
    }
}

.states-section {
    padding: 100px 0;
    background: var(--light);
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.state-button {
    display: block;
    padding: 20px;
    background: var(--white);
    color: var(--dark);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-light);
}

.state-button:hover,
.state-button:active,
.state-button:focus,
.state-button:focus-visible {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border-color: var(--primary);
    outline: none;
}

.cities-section {
    padding: 100px 0;
    background: var(--white);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.city-button {
    display: block;
    padding: 20px;
    background: var(--light);
    color: var(--dark);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-light);
}

.city-button:hover,
.city-button:active,
.city-button:focus,
.city-button:focus-visible {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border-color: var(--primary);
    outline: none;
}

.latest-posts-section {
    padding: 100px 0;
    background: var(--light);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.post-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

.post-card .post-content {
    padding: 25px;
    text-align: left;
    max-width: 100%;
}

.post-card h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .states-grid,
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .state-button,
    .city-button {
        font-size: 14px;
        padding: 15px;
    }
}
