* {
    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;
    position: relative;
}

.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-announcements {
    padding: 6rem 0;
    background: white;
}

.acmoney-announcements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.acmoney-announcement-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.acmoney-announcement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.acmoney-announcement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.acmoney-announcement-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.acmoney-announcement-content {
    flex: 1;
}

.acmoney-announcement-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.acmoney-announcement-text {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.acmoney-announcement-date {
    color: #9ca3af;
    font-size: 0.875rem;
}

.acmoney-events {
    padding: 6rem 0;
    background: #f8fafc;
}

.acmoney-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.acmoney-event-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-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.acmoney-event-image {
    height: 200px;
    overflow: hidden;
}

.acmoney-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.acmoney-event-card:hover .acmoney-event-image img {
    transform: scale(1.05);
}

.acmoney-event-content {
    padding: 1.5rem;
}

.acmoney-event-date {
    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-event-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.acmoney-event-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.acmoney-event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.acmoney-event-location {
    color: #9ca3af;
}

.acmoney-event-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.acmoney-event-link:hover {
    color: #1e3a8a;
}

.acmoney-media-coverage {
    padding: 6rem 0;
    background: white;
}

.acmoney-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.acmoney-media-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.acmoney-media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.acmoney-media-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.acmoney-media-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.acmoney-media-content {
    flex: 1;
}

.acmoney-media-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.acmoney-media-excerpt {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.acmoney-media-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.acmoney-media-link:hover {
    color: #1e3a8a;
}

.acmoney-news-archive {
    padding: 6rem 0;
    background: #f8fafc;
}

.acmoney-archive-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.acmoney-filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.acmoney-filter-btn:hover,
.acmoney-filter-btn.active {
    border-color: #3b82f6;
    background: #3b82f6;
    color: white;
}

.acmoney-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.acmoney-archive-item {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.acmoney-archive-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.acmoney-archive-date {
    display: block;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.acmoney-archive-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.acmoney-archive-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.acmoney-archive-link:hover {
    color: #1e3a8a;
}

@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-announcements-grid {
        grid-template-columns: 1fr;
    }
    
    .acmoney-events-grid {
        grid-template-columns: 1fr;
    }
    
    .acmoney-media-grid {
        grid-template-columns: 1fr;
    }
    
    .acmoney-archive-grid {
        grid-template-columns: 1fr;
    }
    
    .acmoney-announcement-card {
        flex-direction: column;
        text-align: center;
    }
    
    .acmoney-media-card {
        flex-direction: column;
        text-align: center;
    }
    
    .acmoney-hero-buttons {
        flex-direction: column;
    }
} 