/* Top bar styles */
.google-chrome-extension-bar {
    width: 100%;
    padding: 10px 0;
    text-align: center;
    background-color: #4285F4;
    color: white;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 2rem;
}

/* Scoped styles for the chrome extension section */
.chrome-extension-section .header-content-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
}

.chrome-extension-section .header-content {
    flex: 1;
    text-align: left;
    max-width: 60%;
    padding-top: 2rem;
}

.chrome-extension-section .lander-header h1 {
    font-size: 3rem;
}

.chrome-extension-section .header-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.chrome-extension-section .header-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.chrome-extension-section .header-buttons {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
    gap: 10px;
}

.chrome-extension-section .header-button {
    padding: 12px 24px;
    font-size: 1.1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.chrome-extension-section .header-button-primary {
    background-color: #e3824a;
    color: white;
}

.chrome-extension-section .header-button-secondary {
    background-color: white;
    color: #333;
    border: 2px solid #333;
}

.chrome-extension-section .reviews-section {
    flex: 1;
    max-width: 40%;
    padding-top: 1rem;
}

.chrome-extension-section .reviews-image {
    max-width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

/* Responsive styles */
@media (max-width: 768px) {
    .chrome-extension-section .header-content-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .chrome-extension-section .header-content,
    .chrome-extension-section .reviews-section {
        max-width: 100%;
        padding-top: 1rem;
    }

    .chrome-extension-section .lander-header h1 {
        font-size: 1.4rem;
    }

    .chrome-extension-section .header-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .chrome-extension-section .header-button {
        width: 40%;
        margin: 5px 0;
    }
}

@media (max-width: 400px) {
    .chrome-extension-section .header-button {
        width: 52%;
    }
}
