/* Google Header Responsive Styles */

/* Styles for the Google Workspace header image */
.google-header-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

/* Header content spacing */
header .content {
    margin-top: 20px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .google-header-image {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .google-header-image {
        max-width: 85%;
        margin-bottom: 20px;
    }
    
    header .title {
        font-size: 28px;
    }
    
    header .para {
        font-size: 15px;
    }
    
    .header-buttons .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .header-buttons .ml-3 {
        margin-left: 10px !important;
    }
}

@media (max-width: 576px) {
    .google-header-image {
        max-width: 80%;
        margin-bottom: 15px;
    }
    
    header .sub-title {
        font-size: 16px;
    }
    
    header .title {
        font-size: 24px;
    }
    
    header .para {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .header-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .header-buttons .btn {
        margin-bottom: 10px;
        width: 80%;
    }
    
    .header-buttons .ml-3 {
        margin-left: 0 !important;
    }
}