/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #f9f8f4; /* สีเบจพื้นหลัง */
    color: #4a4a4a; /* สีเทาเข้ม */
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Switch */
.language-switch {
    text-align: right;
    padding: 10px 20px;
}

.language-switch a {
    color: #2c7873; /* สีฟ้าอมเขียว */
    font-size: 0.9rem;
    margin-left: 10px;
    text-decoration: none;
}

.language-switch a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: linear-gradient(120deg, #a7c5bd, #2c7873); /* สีฟ้าอมเขียวแบบไล่โทน */
    color: #f9f8f4; /* สีเบจอ่อน */
    text-align: center;
    padding: 70px 20px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fdfdfd; /* สีขาวอ่อน */
}

.buttons a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1rem;
    margin: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-primary {
    background: #ff7a59; /* สีส้มสด */
    color: #fff; /* สีขาว */
}

.btn-primary:hover {
    background: #ff9d7e; /* สีส้มอ่อน */
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff; /* สีขาว */
}

.btn-secondary:hover {
    background: #fff;
    color: #2c7873; /* สีฟ้าอมเขียว */
}

/* Section Styles */
.section {
    padding: 80px 0;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c7873; /* สีฟ้าอมเขียว */
}

.section p {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #4a4a4a; /* สีเทาเข้ม */
}

/* Services Section */
.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #f5f1e9; /* สีครีม */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: calc(25% - 30px);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card h3 {
    font-size: 1.2rem;
    color: #2c7873; /* สีฟ้าอมเขียว */
    margin-bottom: 10px;
}

.card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a4a4a; /* สีเทาเข้ม */
}

/* Footer */
.footer {
    background: #2c7873; /* สีฟ้าอมเขียว */
    color: #f9f8f4; /* สีเบจ */
    text-align: center;
    padding: 20px;
}
