* {
    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-privacy-overview {
    padding: 6rem 0;
    background: #f8fafc;
}

.acmoney-privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.acmoney-privacy-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-privacy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.acmoney-privacy-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-privacy-card:hover::before {
    transform: scaleX(1);
}

.acmoney-privacy-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-privacy-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.acmoney-privacy-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.acmoney-privacy-description {
    color: #6b7280;
    line-height: 1.6;
}

.acmoney-information-collection {
    padding: 6rem 0;
    background: white;
}

.acmoney-collection-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.acmoney-collection-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.acmoney-collection-subtitle:first-child {
    margin-top: 0;
}

.acmoney-collection-list {
    list-style: none;
    margin-bottom: 2rem;
}

.acmoney-collection-list li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.acmoney-collection-list li::before {
    content: '•';
    color: #f59e0b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.acmoney-collection-visual {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.acmoney-collection-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.acmoney-data-usage {
    padding: 6rem 0;
    background: #f8fafc;
}

.acmoney-usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.acmoney-usage-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-usage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.acmoney-usage-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-usage-card:hover::before {
    transform: scaleX(1);
}

.acmoney-usage-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-usage-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.acmoney-usage-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.acmoney-usage-description {
    color: #6b7280;
    line-height: 1.6;
}

.acmoney-data-protection {
    padding: 6rem 0;
    background: white;
}

.acmoney-protection-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.acmoney-protection-visual {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.acmoney-protection-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.acmoney-protection-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.acmoney-protection-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.acmoney-protection-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.acmoney-protection-details h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.acmoney-protection-details p {
    color: #6b7280;
    line-height: 1.6;
}

.acmoney-user-rights {
    padding: 6rem 0;
    background: #f8fafc;
}

.acmoney-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.acmoney-right-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-right-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.acmoney-right-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-right-card:hover::before {
    transform: scaleX(1);
}

.acmoney-right-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-right-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.acmoney-right-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.acmoney-right-description {
    color: #6b7280;
    line-height: 1.6;
}

.acmoney-policy-updates {
    padding: 6rem 0;
    background: white;
}

.acmoney-updates-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.acmoney-updates-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.acmoney-updates-subtitle:first-child {
    margin-top: 0;
}

.acmoney-updates-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.acmoney-updates-list {
    list-style: none;
    margin-bottom: 2rem;
}

.acmoney-updates-list li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.acmoney-updates-list li::before {
    content: '•';
    color: #f59e0b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.acmoney-updates-contact {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.acmoney-updates-contact p {
    margin-bottom: 0.5rem;
    color: #6b7280;
}

.acmoney-updates-contact p:last-child {
    margin-bottom: 0;
}

.acmoney-updates-contact strong {
    color: #1e3a8a;
}

.acmoney-updates-visual {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.acmoney-updates-visual img {
    width: 100%;
    height: auto;
    display: block;
}

@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-privacy-grid {
        grid-template-columns: 1fr;
    }
    
    .acmoney-collection-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .acmoney-usage-grid {
        grid-template-columns: 1fr;
    }
    
    .acmoney-protection-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .acmoney-rights-grid {
        grid-template-columns: 1fr;
    }
    
    .acmoney-updates-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .acmoney-hero-buttons {
        flex-direction: column;
    }
} 