/* Global Styles */
:root {
    --primary-color: #333;
    --secondary-color: #777;
    --background-color: #f8f9fa;
    --container-bg: white;
    --shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family), serif;
    background-color: var(--background-color);
    color: var(--primary-color);
    padding: 30px;
    line-height: 1.6;
}

/* Container */
.cover-letter-container {
    max-width: 800px;
    margin: auto;
    background: var(--container-bg);
    padding: 30px;
    box-shadow: var(--shadow);
    border-radius: 8px;
}

/* Title */
.cover-letter-title {
    text-align: center;
    font-weight: 600;
    font-size: 2rem; /* Increased for better visibility */
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--primary-color);
}

/* Body Text */
.cover-letter-body {
    font-size: 1rem; /* Adjusted for better readability */
    line-height: 1.8;
    color: var(--primary-color);
}

/* Signature */
.signature {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--primary-color);
    display: block;
}

/* Contact Info */
.contact-info {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.contact-info a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

/* Address */
.address {
    font-size: 0.9rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: start;
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .cover-letter-container {
        padding: 20px;
    }

    .cover-letter-title {
        font-size: 1.75rem;
    }

    .cover-letter-body {
        font-size: 0.9rem;
    }

    .signature {
        font-size: 1.1rem;
    }
}