* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sarabun', 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.acmoney-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.acmoney-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.acmoney-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.acmoney-section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.acmoney-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.acmoney-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 1;
}

.acmoney-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
    align-items: center;
}

.acmoney-hero-text {
    color: white;
}

.acmoney-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.acmoney-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

.acmoney-hero-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: #e5e7eb;
    line-height: 1.8;
}

.acmoney-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.acmoney-btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.acmoney-btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.acmoney-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.acmoney-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #fbbf24;
}

.acmoney-btn-secondary:hover {
    background: #fbbf24;
    color: #1e3a8a;
    transform: translateY(-2px);
}

.acmoney-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.acmoney-hero-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.acmoney-latest-news {
    padding: 6rem 0;
    background: #f8fafc;
}

.acmoney-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.acmoney-news-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.acmoney-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.acmoney-news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.acmoney-news-card:hover::before {
    transform: scaleX(1);
}

.acmoney-news-image {
    height: 200px;
    overflow: hidden;
}

.acmoney-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.acmoney-news-card:hover .acmoney-news-image img {
    transform: scale(1.05);
}

.acmoney-news-content {
    padding: 1.5rem;
}

.acmoney-news-category {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.acmoney-news-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.acmoney-news-excerpt {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.acmoney-news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.acmoney-news-date {
    color: #9ca3af;
}

.acmoney-news-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.acmoney-news-link:hover {
    color: #1e3a8a;
}

.acmoney-news-categories {
    padding: 6rem 0;
    background: white;
}

.acmoney-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.acmoney-category-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.acmoney-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.acmoney-category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acmoney-category-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.acmoney-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.acmoney-category-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.acmoney-category-link {
    display: inline-block;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.acmoney-category-link:hover {
    color: #1e3a8a;
}

.acmoney-popular-articles {
    padding: 6rem 0;
    background: #f8fafc;
}

.acmoney-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.acmoney-article-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.acmoney-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.acmoney-article-image {
    height: 200px;
    overflow: hidden;
}

.acmoney-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.acmoney-article-card:hover .acmoney-article-image img {
    transform: scale(1.05);
}

.acmoney-article-content {
    padding: 1.5rem;
}

.acmoney-article-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.acmoney-article-excerpt {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.acmoney-article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.acmoney-article-views {
    color: #3b82f6;
    font-weight: 600;
}

.acmoney-article-date {
    color: #9ca3af;
}

.acmoney-newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.acmoney-newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.acmoney-newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.acmoney-newsletter-description {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.6;
}

.acmoney-newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.acmoney-newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
}

.acmoney-search-section {
    padding: 4rem 0;
    background: white;
}

.acmoney-search-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.acmoney-search-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 2rem;
}

.acmoney-search-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.acmoney-search-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.acmoney-search-input:focus {
    border-color: #3b82f6;
}

.acmoney-search-btn {
    padding: 1rem;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.acmoney-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.acmoney-search-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .acmoney-container {
        padding: 0 2rem;
    }
    
    .acmoney-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
    }
    
    .acmoney-hero-title {
        font-size: 2.5rem;
    }
    
    .acmoney-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .acmoney-section-title {
        font-size: 2rem;
    }
    
    .acmoney-news-grid {
        grid-template-columns: 1fr;
    }
    
    .acmoney-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .acmoney-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .acmoney-newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .acmoney-newsletter-form {
        flex-direction: column;
    }
    
    .acmoney-search-form {
        flex-direction: column;
    }
    
    .acmoney-hero-buttons {
        flex-direction: column;
    }
} 