body {
    font-family: Arial, sans-serif;
    background-color: #f9fafb;
}

.dashboard-section {
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
}

.dashboard-section h1 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.card-container {
    display: flex;
    justify-content: space-between;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 30%;
    padding: 20px;
    text-align: left;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.card h3 {
    font-size: 20px;
    margin-top: 15px;
    color: #333;
}

.card p {
    color: #666;
    font-size: 14px;
}

.tag {
    display: inline-block;
    padding: 5px 10px;
    margin-top: 10px;
    border-radius: 15px;
    background-color: #e7f1ff;
    color: #007bff;
    font-size: 12px;
}

.card a {
    display: block;
    margin-top: 15px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.card a:hover {
    text-decoration: underline;
}








.signup-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    max-width: 1200px;
    padding: 40px;
}

.signup-text {
    max-width: 50%;
}

.signup-text h1 {
    font-size: 30px;
    color: #333;
    margin-bottom: 20px;
}

.signup-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.signup-text input {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 70%;
    font-size: 16px;
    margin-right: 10px;
}

.signup-text button {
    padding: 12px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.signup-text button:hover {
    background-color: #0056b3;
}

.signup-image {
    max-width: 40%;
    text-align: center;
}

.signup-image img {
    max-width: 100%;
}





body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 50px;
    display: flex;
    justify-content: space-between;
}

.footer .subscribe-section {
    flex: 1;
    margin-right: 50px;
}

.subscribe-section h2 {
    color: #1a73e8;
    font-size: 18px;
    margin-bottom: 10px;
}

.subscribe-section p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 20px;
}

.subscribe-section input {
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    width: 70%;
}

.subscribe-section button {
    padding: 12px 15px;
    background-color: #1a73e8;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
}

.footer .footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
}

.footer-links div {
    flex: 1;
}

.footer-links h3 {
    font-size: 16px;
    color: #bbb;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: #fff;
}




body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.legal-footer {
    background-color: #333;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    position: relative;
}

.legal-footer .separator {
    width: 90%;
    height: 1px;
    background-color: #aaa;
    margin: 0 auto 20px;
}

.legal-footer .links {
    margin-bottom: 10px;
}

.legal-footer .links a {
    color: #ccc;
    margin: 0 15px;
    text-decoration: none;
    font-size: 14px;
}

.legal-footer .links a:hover {
    color: #fff;
}

.legal-footer p {
    margin: 0;
    font-size: 14px;
}