body {
    background-color: #f5f5f5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.api-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 20px;
}

.section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #5cb85c;
    border-radius: 15px 15px 0 0;
}

.pricing-card h3 {
    color: #5cb85c;
    font-size: 1.5rem;
    margin: 1rem 0;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin: 1.5rem 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card ul li {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.pricing-card ul li::before {
    content: "✓";
    color: #5cb85c;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.action-button {
    background-color: #5cb85c;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.action-button:hover {
    background-color: #4cae4c;
    transform: scale(1.05);
}

.api-method {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.api-method h3 {
    color: #5cb85c;
    font-size: 1.5rem;
    margin-top: 0;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

.method-path {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    font-family: monospace;
    margin: 1rem 0;
    font-size: 1.1rem;
    border-left: 4px solid #5cb85c;
}

.method-details {
    margin: 1.5rem 0;
}

code {
    background-color: #f8f9fa;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9rem;
}

.example {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    font-family: monospace;
    white-space: pre-wrap;
    margin: 1rem 0;
    font-size: 0.9rem;
    border: 1px solid #eee;
}

h1, h2 {
    text-align: center;
    color: #333;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #5cb85c;
}

h2 {
    font-size: 2rem;
    margin: 3rem 0 2rem;
}
