body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

header {
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1a73e8; /* A blue color similar to Toss */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #1a73e8;
}

.hero-section {
    background-color: #f0f8ff; /* Light blue background for hero */
    text-align: center;
    padding: 80px 0;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #000; /* Darker text for emphasis */
}

.hero-section p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.content-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.content-section:nth-child(even) {
    background-color: #f9f9f9;
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #000;
}

.content-section h3 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #000;
}

.content-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.content-section#credit {
    text-align: center;
}

.button {
    display: inline-block;
    background-color: #1a73e8; /* Blue color for button */
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0d47a1; /* Darker blue on hover */
}

footer {
    background-color: #363C46; /* Dark grayish blue background for footer */
    color: #D0D0D0;
    padding: 40px 0;
    font-size: 14px;
    text-align: left;
}

footer .container {
    display: flex;
    flex-direction: column; /* Stack main content and bottom text */
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Add horizontal padding to container */
}

.footer-main-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 30px;
    align-items: flex-start;
    gap: 20px; /* Add gap for consistent spacing between columns */
}

.footer-col {
    flex: 1 1 20%; /* Allow columns to grow/shrink and take about 20% of space */
    /* min-width: 200px; */ /* Removed to allow more flexibility */
    /* margin-right: 40px; */ /* Replaced by gap */
    box-sizing: border-box;
}

.footer-col:last-of-type {
    /* margin-right: 0; */ /* Replaced by gap */
}

.footer-col:nth-child(2) { /* Target the customer service column specifically */
    /* margin-right: 80px; */ /* Removed this specific margin */
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-col p {
    margin: 5px 0;
    line-height: 1.5;
    color: #D0D0D0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #D0D0D0;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-social-icons {
    width: 100%;
    display: flex;
    justify-content: center; /* Center the icon horizontally */
    gap: 10px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #4A515C;
    align-items: center;
    flex-shrink: 0;
}

.social-icon-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #4A515C;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-size: 20px; /* Increased font size for better visibility of Font Awesome icon */
    transition: background-color 0.3s ease;
}

.social-icon-footer:hover {
    background-color: #5A616C;
}

.footer-bottom-text {
    width: 100%;
    display: flex; /* Make it a flex container */
    align-items: center; /* Vertically align items */
    justify-content: flex-start; /* Align items to the start (left) */
    padding-top: 20px;
    border-top: 1px solid #4A515C;
    margin-top: 20px;
    color: #B0B0B0;
}

.footer-bottom-text .footer-social-icons {
    padding-top: 0; /* Remove top padding if it was inherited */
    margin-top: 0; /* Remove top margin if it was inherited */
    border-top: none; /* Remove border if it was inherited */
    margin-right: 15px; /* Add some space between icon and text */
    width: auto; /* Allow content to define width */
}

.footer-bottom-text p {
    margin: 0; /* Remove default paragraph margin */
} 