/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Google Sans', Roboto, Arial, sans-serif;
}

body {
    color: #3c4043;
    background-color: #fff;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    border-bottom: 1px solid #dadce0;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 8px;
}

.logo-text {
    font-size: 22px;
    font-weight: 500;
    color: #5f6368;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 10px;
    font-size: 14px;
}

.nav-links li a:hover {
    color: #1a73e8;
}

.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 5px 12px;
    width: 40%;
}

.search-box input {
    border: none;
    outline: none;
    width: 100%;
    padding: 8px;
    font-size: 16px;
}

.search-icon {
    color: #5f6368;
}

.user-actions {
    display: flex;
    align-items: center;
}

.user-actions a {
    margin-left: 15px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.hero h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #202124;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin-bottom: 40px;
    color: #5f6368;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-button {
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.primary-button {
    background-color: #1a73e8;
    color: white;
}

.secondary-button {
    border: 1px solid #dadce0;
    color: #1a73e8;
}

/* Product Grid */
.products {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 40px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 24px;
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}

.product-icon {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a73e8;
}

.product-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.product-desc {
    font-size: 14px;
    color: #5f6368;
    margin-bottom: 16px;
}

.product-link {
    color: #1a73e8;
    font-size: 14px;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    padding: 40px 20px;
    border-top: 1px solid #dadce0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: #5f6368;
}

.footer-links a:hover {
    color: #1a73e8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #dadce0;
}

.footer-logo {
    font-size: 18px;
    color: #5f6368;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 12px;
    color: #5f6368;
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}