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

html {
    font-size: 16px;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #ffffff;
    min-height: 100vh;
    font-size: 1rem;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 12px;
    }
}

/* CTA部分样式 */
.cta-section {
    background-color: #f9f9f9;
    background-image: linear-gradient(rgba(30, 144, 255, 0.05), rgba(0, 102, 204, 0.1));
    padding: 3rem 0;
    color: #333;
    text-align: center;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-content {
    background: linear-gradient(to right, rgba(30, 144, 255, 0.1), rgba(0, 102, 204, 0.2));
    color: #333;
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.1);
}

/* CTA响应式样式 */
@media (max-width: 768px) {
    .cta-content {
        padding: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-free {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.cta-free {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta-button {
    background: linear-gradient(to right, #1e90ff, #0066cc);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.cta-terms {
    font-size: 0.8rem;
    color: #333;
    margin-top: 1rem;
}

.cta-terms a {
    color: #333;
    text-decoration: underline;
}

.header {
    background: linear-gradient(to right, #1e90ff, #0066cc);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative; /* 新增，为菜单定位 */
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

/* 新增汉堡菜单按钮 */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

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

.button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 160px;
}

@media (max-width: 768px) {
    .button {
        padding: 0.8rem 1.5rem;
        min-width: 140px;
        width: 100%;
        max-width: 300px;
    }

    .nav-links {
        display: none; /* 在小屏幕上隐藏原导航链接 */
        flex-direction: column;
        position: absolute;
        top: 50px; /* 根据header高度调整 */
        left: 0;
        width: 100%;
        background: linear-gradient(to right, #1e90ff, #0066cc); /* 更改背景颜色 */
        padding: 1rem 0;
        z-index: 999;
    }

    .nav-links.active {
        display: flex; /* 点击后显示 */
    }

    .nav-links a {
        text-align: center;
        padding: 1rem;
        width: 100%;
    }

    .hamburger {
        display: flex; /* 在小屏幕上显示汉堡菜单 */
    }

    .auth-buttons {
        display: none; /* 在小屏幕上隐藏登录/注册按钮 */
    }
}

.login {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.signup {
    background: white;
    color: #0066cc;
}

.hero {
    background: url('../image/agematch.png') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 60px;
    background-position: center 30%; /* 调整背景图位置 */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto; /* Horizontally center the container */
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.features {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

/* Popular Members 部分样式 */
.popular-members {
    padding: 2rem;
    background-color: #fff;
}

.popular-section {
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.popular-section h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

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

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

.member-card:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 100%;
    height: 200px;
    background-position: center;
    background-size: cover;
}

.sarah-glasgow {
    background-image: url('../image/glasgow-uk-woman-44-coffee.jpg');
}

.emma-liverpool {
    background-image: url('../image/liverpool-uk-woman-49-smiling.jpg');
}

.victoria-leeds {
    background-image: url('../image/leeds-uk-woman-47-professional.jpg');
}

.sophie-london {
    background-image: url('../image/london-uk-woman-28-smiling-outdoor.jpg');
}

.james-manchester {
    background-image: url('../image/manchester-uk-handsome-man-35-business-model.jpg');
}

.david-cardiff {
    background-image: url('../image/cardiff-uk-man-25-casual.jpg');
}

.michael-birmingham {
    background-image: url('../image/birmingham-uk-man-26-sunglasses-selfie.jpg');
}

.william-sheffield {
    background-image: url('../image/sheffield-uk-man-53-business-vacation.jpg');
}

.member-info {
    padding: 1rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.member-info p {
    color: #666;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
}

.view-profile {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, #1e90ff, #0066cc);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.view-profile:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

@media (max-width: 768px) {
    .popular-members {
        padding: 1rem;
    }
    
    .members-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .member-photo {
        height: 150px;
    }
    
    .member-info h3 {
        font-size: 1rem;
    }
    
    .member-info p {
        font-size: 0.8rem;
    }
    
    .view-profile {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}


.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 约会优势部分样式 */
.dating-benefits {
    padding: 4rem 2rem;
    background-color: #fff;
    margin: 0 auto;
    text-align: center;
}

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

.dating-benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0066cc;
    line-height: 1.2;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.benefit-card h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #333;
    line-height: 1.3;
}

.benefit-card p {
    color: #666;
    line-height: 1.8;
    text-align: center;
    font-size: 1.1rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* 安全特性部分样式 */
.security-features {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    margin: 0 auto;
}

.security-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
}

.security-intro {
    flex: 1;
    padding-right: 2rem;
}

.security-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.3;
}

.security-intro p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.security-cards {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.security-card {
    display: flex;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1.5rem;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.security-card:hover .card-icon {
    transform: scale(1.1);
}

.verified-icon {
    background-color: #e3f2fd;
    color: #1e90ff;
}

.secure-icon {
    background-color: #e8f5e9;
    color: #0066cc;
}

.support-icon {
    background-color: #e3f2fd;
    color: #1e90ff;
}

.card-icon i {
    display: block;
    line-height: 1;
}

.card-content h3 {
    margin-bottom: 0.75rem;
    color: #333;
    font-size: 1.4rem;
    line-height: 1.3;
}

.card-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .security-container {
        flex-direction: column;
    }
    
    .security-intro {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

/* Sugar Relationship 部分样式 */
.sugar-relationship {
    padding: 4rem 2rem;
    background-color: #fff;
}

.relationship-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.sugar-relationship h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.age-gap-image {
    margin: 3rem auto;
    text-align: center;
    max-width: 90%;
}

.full-width-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.full-width-image:hover {
    transform: scale(1.02);
}

.relationship-intro {
    font-size: 1.3rem;
    color: #666;
    max-width: 90%;
    margin: 2.5rem auto 1.5rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .age-gap-image {
        margin: 2rem auto;
    }
    
    .relationship-intro {
        margin: 2rem auto 1.5rem;
    }
}

.relationship-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 90%;
    margin: 0 auto 3.5rem;
    line-height: 1.8;
}

.relationship-features {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

/* 表单样式 */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0,102,204,0.1);
}

/* 列表样式 */
.list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.list-item:last-child {
    border-bottom: none;
}

/* 间距工具类 */
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.mx-1 { margin-left: 1rem; margin-right: 1rem; }
.mx-2 { margin-left: 2rem; margin-right: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.py-1 { padding-top: 1rem; padding-bottom: 1rem; }
.py-2 { padding-top: 2rem; padding-bottom: 2rem; }
.py-3 { padding-top: 3rem; padding-bottom: 3rem; }

.px-1 { padding-left: 1rem; padding-right: 1rem; }
.px-2 { padding-left: 2rem; padding-right: 2rem; }

@media (max-width: 768px) {
    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-control {
        padding: 0.7rem 0.9rem;
        font-size: 0.95rem;
    }

    .list-item {
        margin-bottom: 0.8rem;
        padding: 0.4rem 0;
    }

    .mb-md-1 { margin-bottom: 1rem; }
    .mb-md-2 { margin-bottom: 2rem; }
    .mt-md-1 { margin-top: 1rem; }
    .mt-md-2 { margin-top: 2rem; }
    .mx-md-1 { margin-left: 1rem; margin-right: 1rem; }
    .py-md-1 { padding-top: 1rem; padding-bottom: 1rem; }
    .px-md-1 { padding-left: 1rem; padding-right: 1rem; }
}


.feature-image {
    flex: 1;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

.quality-time {
    background-image: url('https://via.placeholder.com/500x300');
}

.free-time {
    background-image: url('https://via.placeholder.com/500x300');
}

.feature-content {
    flex: 1;
    padding: 2rem;
    text-align: left;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 1.75rem;
    color: #333;
    line-height: 1.3;
}

.feature-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .feature-item {
        flex-direction: column;
    }
    
    .feature-image {
        min-height: 200px;
    }
    
    .sugar-relationship h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .relationship-intro,
    .relationship-description {
        font-size: 1.1rem;
        max-width: 95%;
    }
    
    .feature-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
    }
    
    .feature-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .benefit-card h3 {
        font-size: 1.6rem;
    }
    
    .benefit-card p {
        font-size: 1rem;
    }
    
    .security-intro h2 {
        font-size: 1.8rem;
    }
    
    .security-intro p,
    .card-content p {
        font-size: 1rem;
    }
    
    .card-content h3 {
        font-size: 1.3rem;
    }
}

/* App 部分样式 */
.app-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.app-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.app-info {
    flex: 1;
}

.app-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.app-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.join-free {
    background: linear-gradient(to right, #1e90ff, #0066cc);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    display: inline-block;
}

.app-preview {
    flex: 1;
    display: flex;
    justify-content: center;
}

.app-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .app-container {
        flex-direction: column;
    }
    
    .app-info {
        text-align: center;
        margin-bottom: 2rem;
    }
}

.success-stories {
    background: #f9f9f9;
    padding: 4rem 2rem;
}

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

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

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* UK Popular Cities 样式 */
.popular-locations {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

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

.popular-locations h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #333;
}

.cities-container {
    margin: 0 auto;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    padding: 1rem;
}

.city-link {
    display: block;
    padding: 1rem;
    text-align: center;
    background: white;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    font-size: 1.1rem;
}

.city-link:hover {
    background: linear-gradient(to right, #1e90ff, #0066cc);
    color: white;
    transform: translateY(-2px);
    border: 1px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}

@media (max-width: 768px) {
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .city-link {
        padding: 0.8rem;
        font-size: 1rem;
    }
}

/* Footer 样式 */
.footer {
    background: linear-gradient(to right, #1e90ff, #0066cc);
    color: white;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-section:last-child {
        margin-bottom: 0;
    }
}

/* Terms Page Styles */
.terms-section {
    padding: 6rem 2rem 4rem;
    background-color: #fff;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.terms-header h1 {
    font-size: 2.5rem;
    color: #ff1493;
    margin-bottom: 1rem;
}

.terms-content h2 {
    font-size: 1.8rem;
    color: #333;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 20, 147, 0.2);
}

.terms-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.terms-content ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.terms-content ul li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    position: relative;
}

.terms-content ul li::before {
    content: '•';
    color: #ff1493;
    font-size: 1.2em;
    position: absolute;
    left: -1.5rem;
}

.terms-content a {
    color: #ff1493;
    text-decoration: none;
    transition: all 0.3s ease;
}

.terms-content a:hover {
    color: #ff69b4;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .terms-section {
        padding: 5rem 1rem 3rem;
    }

    .terms-container {
        padding: 1.5rem;
    }

    .terms-header h1 {
        font-size: 2rem;
    }

    .terms-content h2 {
        font-size: 1.5rem;
    }
}

/* Blog Post Styles */
.blog-post-hero {
    background: linear-gradient(to right, #1e90ff, #0066cc);
    color: white;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.blog-post-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.blog-post-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-container {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.blog-post-container article h2 {
    font-size: 2rem;
    color: #333;
    margin: 2.5rem 0 1.5rem;
}

.blog-post-container article p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.blog-post-container article a {
    color: #1e90ff;
    text-decoration: none;
}

.blog-post-container article a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-post-hero {
        padding: 6rem 1rem 3rem;
    }

    .blog-post-hero h1 {
        font-size: 2rem;
    }

    .blog-post-container {
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .blog-post-container article h2 {
        font-size: 1.6rem;
    }

    .blog-post-container article p {
        font-size: 1rem;
    }
}