/* Subdued and Professional Color Palette */
:root {
    --primary-color: #0e3e72;       /* Muted Blue */
    --secondary-color: #F5F5F5;    /* Soft Light Grey */
    --accent-color: #6A8D73;       /* Subtle Green */
    --text-color: #333333;         /* Dark Charcoal */
    --cta-color: #E9A953;          /* Muted Orange */
}

body {
    background-color: #f2e6d6;
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    margin: 0;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    .card-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .card, .left-card {
        width: 90%; /* Full width for small screens */
    }
    h1 {
        font-size: 1.8em; /* Adjust heading size */
    }
}

.highlight {
    color: darkorange;
}

button:hover {
    background-color: #d68a3a; /* Slightly darker muted orange */
    transform: scale(1.05); /* Subtle zoom effect */
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: var(--text-color);
    padding: 10px 0;
    border-top: 1px solid #ddd;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
}

h1 {
    font-size: 2.6em;
    color: var(--primary-color);
}

h3 {
    color: var(--primary-color);
}

p {
    color: var(--text-color);
}

.topheading, .est {
    text-align: center;
}

p.username {
    font-weight: bold;
}

.intro {
    text-align: center;
    padding: 10%;
    padding-top: 1%;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.card, .left-card {
    background-color: whitesmoke;
    border-radius: 10px;
    width: 40%;
    min-width:min-content;
    max-width: 300px; /* Limit card width */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--primary-color); /* Add border with primary color */
}

.left-card {
    margin-left: 10%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card-title {
    font-size: 1.4em;
    margin: 0 0 10px 0;
    color: var(--primary-color);
    text-align: center;
}

.card-description {
    font-size: 1.2em;
    color: #666;
    margin: 0 0 10px 0;
    display: inline-block;
}

.item-value {
    margin-top: 5px;
    font-weight: bold;
    font-size: 1.1em;
}

.item {
    margin-bottom: 5px;
    margin-top: 20px;
}

.monthly {
    text-align: center;
    margin-top: 10px;
}

.click {
    text-align: center;
}

.it {
    margin-bottom: 50px;
}

button {
    margin: 10px;
    font-size: 1em;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #d68a3a; /* Slightly darker muted orange */
}

/* Responsive Images and Videos */
img, video {
    max-width: 100%;
    height: auto;
    display: block;
}
footer {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #ddd;
    position: relative; /* Adjust as needed (e.g., fixed or sticky) */
    left: 0;
}


.company{
    font-family: Georgia;
    color: white;
}
.fa {
    padding: 10px;
    font-size: 30x;
    width: 50px;
    text-align: center;
    text-decoration: none;
  }
.fa-instagram{
    color: white; 
}
.fa-whatsapp{
    color: white;
}
.fa-google{
    color: white;
}
