﻿:root {
    --primary: #00162d;
    --bg: #f9fafc;
    --card-bg: #ffffff;
    --border: #e0e6ed;
    --radius: 12px;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

body {
    margin: 0;
    background-color: var(--bg);
    color: black;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: "Roboto", sans-serif;
}

.container p {
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    color: var(--primary);
}

.api-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.api-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.api-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.api-card h3 {
    margin-top: 0;
    color: var(--primary);
    font-size: 1.4rem;
}

.contact-section {
    margin-top: 40px;
}

.contact-section h2 {
    margin: 0 0 16px 0;
    font-size: 1.6rem;
    color: var(--primary);
}

.contact-section p {
    margin: 8px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.contact-section a {
    display: inline-block;
    margin: 4px 0 12px 0;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-section a:hover {
    text-decoration: underline;
}