/* ===== CONTACT PAGE STYLES ===== */

/* Root Variables */
:root {
    --primary-color: #d64161;
    --primary-light: #e87a90;
    --primary-dark: #b8344f;
    --secondary-color: #f8b3c4;
    --accent-color: #ffd6e1;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --text-muted: #999;
    --background-light: #fefefe;
    --background-cream: #faf8f6;
    --white: #ffffff;
    --error-color: #dc3545;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --shadow-light: 0 2px 10px rgba(214, 65, 97, 0.1);
    --shadow-medium: 0 4px 20px rgba(214, 65, 97, 0.15);
    --shadow-heavy: 0 8px 30px rgba(214, 65, 97, 0.2);
    --border-radius: 12px;
    --border-radius-large: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
}

/* ===== HERO SECTION ===== */
.contact-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-cream) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(214, 65, 97, 0.1), rgba(248, 179, 196, 0.1));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(214, 65, 97, 0.2);
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.hero-description {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 6rem 0;
    background: var(--background-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(214, 65, 97, 0.1);
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-family: var(--font-secondary);
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e1e5e9;
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(214, 65, 97, 0.1);
}

.form-input:invalid,
.form-select:invalid,
.form-textarea:invalid {
    border-color: var(--error-color);
}

.form-input:valid,
.form-select:valid,
.form-textarea:valid {
    border-color: var(--success-color);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    appearance: none;
}

.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.form-checkbox {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    background: var(--white);
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
}

.form-checkbox:checked+.checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.form-checkbox:checked+.checkbox-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 6px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

.form-error {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    color: var(--error-color);
    margin-top: 0.25rem;
    display: none;
}

.form-error.show {
    display: block;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.form-submit:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.form-submit:active {
    transform: translateY(0);
}

.btn-icon {
    transition: var(--transition);
}

.form-submit:hover .btn-icon {
    transform: translateX(3px);
}

/* ===== CONTACT INFO ===== */
.contact-info-wrapper {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(214, 65, 97, 0.1);
    height: fit-content;
}

.info-title {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-subtitle {
    font-family: var(--font-secondary);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-label {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.info-text {
    font-family: var(--font-secondary);
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.info-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
}

.day {
    color: var(--text-dark);
    font-weight: 500;
}

.time {
    color: var(--text-light);
}

.social-links {
    border-top: 1px solid rgba(214, 65, 97, 0.1);
    padding-top: 2rem;
}

.social-title {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--background-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(214, 65, 97, 0.1);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 0;
    background: var(--background-cream);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-content {
    text-align: center;
    color: var(--white);
}

.map-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.map-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.map-text {
    font-family: var(--font-secondary);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 500;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.map-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 6rem 0;
    background: var(--background-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: var(--font-secondary);
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(214, 65, 97, 0.1);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--background-cream);
}

.faq-question h3 {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    font-family: var(--font-secondary);
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FORM STATES ===== */
.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
    border-color: var(--error-color);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group.success .form-input,
.form-group.success .form-select,
.form-group.success .form-textarea {
    border-color: var(--success-color);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-submit:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    transform: none;
}

.form-submit:disabled:hover {
    background: var(--text-muted);
    transform: none;
    box-shadow: none;
}

/* ===== LOADING STATES ===== */
.form-submit.loading {
    pointer-events: none;
}

.form-submit.loading .btn-text {
    opacity: 0;
}

.form-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===== SUCCESS MESSAGE ===== */
.success-message {
    display: none;
    background: var(--success-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    font-weight: 500;
}

.success-message.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .contact-grid {
        max-width: 1000px;
        gap: 3rem;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 2.5rem;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-wrapper {
        order: -1;
    }

    .hero-title {
        font-size: 3rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 50vh;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .contact-section {
        padding: 4rem 0;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .faq-section {
        padding: 4rem 0;
    }

    .map-placeholder {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .info-title {
        font-size: 1.5rem;
    }

    .social-icons {
        justify-content: center;
    }

    .shape-1,
    .shape-2,
    .shape-3 {
        display: none;
    }

    .contact-grid,
    .faq-grid {
        padding: 0 1rem;
    }
}

/* ===== CONTAINER UTILITY ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* ===== FOOTER MINIMAL ===== */
.footer-minimal {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand-minimal {
    max-width: 300px;
}

.footer-logo-minimal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-icon {
    font-size: 2rem;
}

.footer-brand-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-tagline {
    font-family: var(--font-secondary);
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links-minimal {
    display: flex;
    gap: 1rem;
}

.social-link-minimal {
    width: 40px;
    height: 40px;
    background: rgba(214, 65, 97, 0.2);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link-minimal:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.footer-links-minimal {
    list-style: none;
    padding: 0;
}

.footer-links-minimal li {
    margin-bottom: 0.75rem;
}

.footer-links-minimal a {
    font-family: var(--font-secondary);
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links-minimal a:hover {
    color: var(--secondary-color);
}

.contact-info-minimal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item-minimal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-secondary);
    color: #ccc;
}

.contact-item-minimal i {
    color: var(--secondary-color);
    width: 16px;
}

.contact-item-minimal a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item-minimal a:hover {
    color: var(--secondary-color);
}

.newsletter-minimal {
    max-width: 250px;
}

.newsletter-text {
    font-family: var(--font-secondary);
    color: #ccc;
    margin-bottom: 1.5rem;
}

.newsletter-input-group {
    display: flex;
    border-radius: 25px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-input-minimal {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    color: var(--white);
    font-family: var(--font-secondary);
}

.newsletter-input-minimal::placeholder {
    color: #ccc;
}

.newsletter-btn-minimal {
    padding: 0.75rem 1rem;
    background: var(--primary-color);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn-minimal:hover {
    background: var(--primary-dark);
}

.footer-bottom-minimal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-minimal {
    font-family: var(--font-secondary);
    color: #999;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    font-family: var(--font-secondary);
    color: #999;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--secondary-color);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title-modern {
        font-size: 3rem;
    }

    .hero-stats-modern {
        gap: 2rem;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }

    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        text-align: left;
    }

    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
    }

    .timeline-item:nth-child(even) .card-header {
        justify-content: flex-start;
    }

    .timeline-item:nth-child(even) .timeline-stats {
        justify-content: flex-start;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-brand-minimal {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }

    .hero-stats-modern {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-title-modern {
        font-size: 2rem;
    }

    .values-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-content-modern h2 {
        font-size: 2rem;
    }

    .cta-buttons-modern {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 2rem;
    }

    .hero-description-modern {
        font-size: 1rem;
    }

    .timeline-container {
        padding: 0 1rem;
    }

    .timeline-card {
        padding: 1.5rem;
    }

    .value-card-modern {
        padding: 2rem 1.5rem;
    }

    .member-info-modern {
        padding: 1.5rem;
    }
}

html {
    height: 100%;
}