/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Body and Layout */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #e6f0ff;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Main content wrapper */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
    flex: 1; /* Makes content take all available vertical space */
}

/* Navbar */
nav {
    background-color: #1a73e8;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: white;
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffeb3b;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 5rem 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.button {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: #1a73e8;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.button:hover {
    background-color: #155ab6;
    transform: translateY(-2px);
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #1a73e8;
}

/* Documentation Table */
.docs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.docs-table th, .docs-table td {
    padding: 0.8rem;
    border: 1px solid #ddd;
    text-align: left;
}

.docs-table th {
    background-color: #1a73e8;
    color: white;
}

/* Footer */
footer {
    background-color: #155ab6;
    color: white;
    text-align: center;
    padding: 1.5rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav a {
        margin: 0.5rem 0;
    }
}
/* Contact Page Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.contact-card h2 {
    color: #1a73e8;
    margin-bottom: 0.8rem;
}

.contact-card p, .contact-card ul {
    font-size: 1rem;
    color: #333;
}

.contact-card ul {
    padding-left: 1.2rem;
}
/* Documentation Cards */
.doc-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.doc-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.doc-card h2 {
    color: #1a73e8;
    margin-bottom: 0.8rem;
}

.doc-card p {
    font-size: 1rem;
    color: #333;
}
/* Features Cards */
.features-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.feature-card h2 {
    color: #1a73e8;
    margin-bottom: 0.8rem;
}

.feature-card p {
    font-size: 1rem;
    color: #333;
}
/* Hero Section */
.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: #333;
}

/* CTA Button */
.button {
    display: inline-block;
    background-color: #1a73e8;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.button:hover {
    background-color: #155ab6;
    transform: translateY(-2px);
}
