@import url('https://fonts.googleapis.com/css2?family=Helvetica:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica', sans-serif;
    color: #1a1a1a;
    background-color: #f9f9f9;
    line-height: 1.6;
    font-size: 16px;
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #ffffff;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.menu-icon {
    display: none;
    font-size: 1.8rem;
    color: #1a1a1a;
}

nav {
    display: flex;
    gap: 1.25rem;
}

nav a {
    color: #000000;
    font-weight: 400;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: -0.15px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #007aff;
}

/* Burger Menu (Mobile) */
#menu-toggle {
    display: none;
}

#menu-toggle:checked + label + nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: white;
    position: absolute;
    top: 60px;
    right: 0;
    padding: 1rem;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    nav {
        display: none;
    }
}

/* Main Content */
main {
    padding: 6rem 0 3rem;
}

section {
    margin-bottom: 3rem;
}

section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

section p, address p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    letter-spacing: -0.25px;
}

/* Grid Layouts */
.why-grid, .service-grid, .interested-grid {
    display: grid;
    gap: 1.5rem;
}

.why-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.interested-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Card Items */
.why-item, .service-item, .interested-item {
    background-color: #ffffff;
    padding: 1.25rem;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover, .service-item:hover, .interested-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #000000;
    letter-spacing: -0.25px;
}

/* Typography */
p, address p, li {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    color: #4a4a4a;
    letter-spacing: -0.25px;
}

ul {
    list-style-type: none;
    padding-left: 1rem;
    color: #4a4a4a;
}

ul li {
    margin-bottom: 0.75rem;
}

/* Footer */
footer {
    background-color: #ffffff;
    color: #1a1a1a;
    text-align: center;
    padding: 1rem;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
}

footer a {
    color: #007aff;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: -0.15px;
}

@media (max-width: 1024px) {
    .why-grid, .service-grid, .interested-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid, .service-grid, .interested-grid {
        grid-template-columns: 1fr;
    }
}