/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #181a1b;
    color: #f5f5f5;
    text-align: center;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #ff1744, #ff3d00, #ff7a00, #ffaa00);
    padding: 80px 20px;
    border-radius: 0 0 30px 30px;
}

header h1 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    background: #343a40; /* Dark Grey Button */
    color: white;
    padding: 15px 30px;
    margin-top: 20px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    background: #495057;
    transform: scale(1.05);
}

/* Sections */
section {
    padding: 30px 20px;
    background: rgba(34, 37, 41, 0.85);
    margin: 30px auto;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.05);
}

/* Trust Section */
.trust-section {
    background: #222529;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}
.trust-section h2{
    color: #ffaa00
}

/* Why Chat Section */
.why-chat h2 {
    color: #ffaa00;
}

.grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
}

.card {
    flex: 1;
    background: rgba(44, 47, 51, 0.9);
    padding: 20px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 2px 2px 10px rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}

/* CTA Section */
.cta {
    background: #222529;
    color: #ffaa00
}

/* Footer */
footer {
    background: #0d0f10;
    color: white;
    padding: 20px;
    font-size: 0.9em;
}

footer a {
    color: #ffaa00;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Fully Responsive Design */
@media (max-width: 1024px) {
    .container {
        max-width: 85%;
    }

    header h1 {
        font-size: 2.2em;
    }

    header p {
        font-size: 1.1em;
    }

    .grid {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
        margin-bottom: 10px;
    }
}
