* {
    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-contact-info {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.acmoney-contact-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
}

.acmoney-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.acmoney-contact-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-contact-card:hover::before {
    transform: scaleX(1);
}

.acmoney-contact-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-contact-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.acmoney-contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.acmoney-contact-details {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.acmoney-contact-link {
    display: inline-block;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.acmoney-contact-link:hover {
    color: #1e3a8a;
}

.acmoney-contact-form-section {
    padding: 6rem 0;
    background: white;
}

.acmoney-contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.acmoney-contact-form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.acmoney-contact-form-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.acmoney-contact-form-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.acmoney-form-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.acmoney-form-feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acmoney-form-feature-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.acmoney-form-feature span {
    font-weight: 600;
    color: #1e3a8a;
}

.acmoney-contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

.acmoney-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.acmoney-form-group {
    margin-bottom: 1.5rem;
}

.acmoney-form-group label {
    display: block;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.acmoney-form-group input,
.acmoney-form-group select,
.acmoney-form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.acmoney-form-group input:focus,
.acmoney-form-group select:focus,
.acmoney-form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

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

.acmoney-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
}

.acmoney-checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.acmoney-checkbox-label a {
    color: #3b82f6;
    text-decoration: none;
}

.acmoney-checkbox-label a:hover {
    color: #1e3a8a;
}

.acmoney-location-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.acmoney-location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.acmoney-location-map {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.acmoney-location-map img {
    width: 100%;
    height: auto;
    display: block;
}

.acmoney-location-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.acmoney-location-address {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.acmoney-location-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.acmoney-location-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.acmoney-location-feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acmoney-location-feature-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.acmoney-location-feature span {
    font-weight: 600;
    color: #1e3a8a;
}

.acmoney-faq-section {
    padding: 6rem 0;
    background: white;
}

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

.acmoney-faq-item {
    background: #f8fafc;
    border-radius: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.acmoney-faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.acmoney-faq-question:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.acmoney-faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a8a;
    margin: 0;
}

.acmoney-faq-toggle {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.acmoney-faq-toggle img {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(30%) sepia(100%) saturate(1000%) hue-rotate(200deg) brightness(0.8) contrast(1);
}

.acmoney-faq-item.active .acmoney-faq-toggle {
    transform: rotate(180deg);
}

.acmoney-faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.acmoney-faq-item.active .acmoney-faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
    opacity: 1;
}

.acmoney-faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

@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-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .acmoney-contact-form-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .acmoney-location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .acmoney-form-row {
        grid-template-columns: 1fr;
    }
    
    .acmoney-hero-buttons {
        flex-direction: column;
    }
} 