body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    line-height: 1.6;
}

/* Header Styling */
.navbar {
    background-color: #005183;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.navbar-brand, .nav-link {
    color: white !important;
    font-weight: bold;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

h1, h2 { 
    font-weight: bold;
    color: #333;
}
h2 {
    margin-top: 30px;
    margin-bottom: 20px;
}

h3 { 
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-top: 25px;
}

h4 {
    font-weight: bold;
    color: #333;
}

/* Section Styling - Clean and minimal */
.section {
    border: 2px solid #068ad1;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin-bottom: 5px;
    background-color: #f8f9fa;
}

.section img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

/* Privacy Policy specific styling - no borders */
.privacy-policy .section {
    border: none;
    text-align: left;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.button {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 20px;
    background: #068ad1;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.button:hover {
    background: #005183;
    color: white;
    text-decoration: none;
}

/* Footer Styling */
.footer {
    background: #005183;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-weight: bold;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: #068ad1;
    color: white;
    font-weight: bold;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.blog-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.blog-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.social-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.facebook { background: #1877F2; }
.twitter { background: #1DA1F2; }
.linkedin { background: #0077B5; }
.whatsapp { background: #25D366; }

@media (max-width: 480px) {
    .social-icons {
        gap: 10px;
    }
    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Contact form styling */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-info {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-info h4 {
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.contact-info ul {
    list-style: none;
    padding-left: 0;
}

.contact-info li {
    margin-bottom: 8px;
}

/* Clean container styling */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Remove any remaining borders and heavy styling */
.group-card {
    margin-bottom: 20px;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    padding: 15px;
    justify-content: space-between;
    border-radius: 8px;
}

.seoquake-nofollow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 5px;
    color: white !important;
    background: #25d366;
    transition: background-color 0.3s;
}

.seoquake-nofollow i {
    margin-right: 8px;
}

.seoquake-nofollow:hover {
    background: #1ea952;
    color: white !important;
    text-decoration: none;
} 