/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    padding: 16px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 20px;
    color: #0ea5e9;
}

.logo-sub {
    font-weight: 500;
    font-size: 14px;
    color: #64748b;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #0ea5e9;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0ea5e9;
    transition: width 0.2s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%) !important;
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}

.cta-button::after {
    display: none;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.4) 0%, rgba(2, 132, 199, 0.3) 100%), url('hero_background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.primary-button {
    display: inline-block;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}

.secondary-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: #0ea5e9;
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: white;
    color: #0ea5e9;
    border-color: white;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: 'Roboto Slab', serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.medical-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    width: 300px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1e293b;
}

.pulse-indicator {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.health-meter {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.meter-fill {
    width: 85%;
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #0ea5e9 100%);
    border-radius: 4px;
    animation: fillMeter 2s ease-out;
}

@keyframes fillMeter {
    0% { width: 0%; }
    100% { width: 85%; }
}

.health-text {
    color: #10b981;
    font-weight: 600;
    font-size: 14px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: #f8fafc;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.feature-card h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e293b;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
}

.about-text .lead {
    font-size: 20px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 20px;
    color: #64748b;
    line-height: 1.7;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.medical-illustration {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #e2e8f0;
}

.tooth-diagram {
    position: relative;
    width: 120px;
    height: 160px;
    margin: 0 auto;
}

.tooth-part {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.crown {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    top: 0;
}

.root {
    width: 40px;
    height: 80px;
    background: linear-gradient(180deg, #0284c7 0%, #0369a1 100%);
    border-radius: 0 0 50% 50%;
    top: 60px;
}

.tooth-labels {
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* Services Section */
.services-section-main {
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9 0%, #0284c7 100%);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-number {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.service-icon {
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 24px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Team Section */
.team-section {
    background: white;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
}

.team-info .lead {
    font-size: 20px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.team-info p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 32px;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.credential-icon {
    font-size: 20px;
}

.member-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    margin: 0 auto 24px;
    border: 4px solid white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.circle {
    border-radius: 50%;
    width: 300px; /* Set desired width */
    height: 300px; /* Set desired height */
    overflow: hidden; /* Ensures the image fits within the circle */
}
.member-info h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.member-title {
    color: #0ea5e9;
    font-weight: 600;
    margin-bottom: 16px;
}

.member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.specialty {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* Pricing Section */
.pricing-section {
    background: #f8fafc;
}

.pricing-content {
    max-width: 800px;
    margin: 48px auto 0;
}

.pricing-info {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-info p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.insurance-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.insurance-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.insurance-card h4 {
    font-family: 'Roboto Slab', serif;
    color: #1e293b;
    margin-bottom: 12px;
    font-size: 18px;
}

.insurance-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-card {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.contact-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.contact-card h4 {
    font-family: 'Roboto Slab', serif;
    color: #1e293b;
    margin-bottom: 12px;
    font-size: 18px;
}

.contact-card p {
    color: #64748b;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.hour-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: #1e293b;
}

.time {
    color: #64748b;
}

/* Forms */
.contact-form {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 24px;
}

.form-header h4 {
    font-family: 'Roboto Slab', serif;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 20px;
}

.form-header p {
    color: #64748b;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
    font-family: inherit;
    margin-bottom: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0ea5e9;
}

/* Registration Section */
.registration-section {
    background: #f8fafc;
}

.registration-container {
    max-width: 800px;
    margin: 48px auto 0;
}

.registration-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 40px;
}

.form-section h4 {
    font-family: 'Roboto Slab', serif;
    color: #1e293b;
    margin-bottom: 24px;
    font-size: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0ea5e9;
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-direction: row;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    cursor: pointer;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    position: relative;
    transition: border-color 0.2s ease;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: #0ea5e9;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #0ea5e9;
    border-radius: 50%;
}

.full-width {
    width: 100%;
    margin-top: 20px;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-text {
    text-align: center;
}

.footer-text p {
    color: #94a3b8;
    margin-bottom: 4px;
}

.footer-text a:hover {
    color: #38bdf8;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-content,
    .contact-grid,
    .team-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row,
    .form-grid,
    .insurance-info {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
    }
	.circle {
    border-radius: 50%;
    width: 150px; /* Set desired width */
    height: 150px; /* Set desired height */
    overflow: hidden; /* Ensures the image fits within the circle */
	}
	.circle img {
		max-width: 100%;
		height:auto;
		}
}



/* Pricing Dropdown Panel */
.tarieven-dropdown {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.tarieven-dropdown.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.tarieven-content {
    background: white;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-top: 50px;
}

.tarieven-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 2px solid #e2e8f0;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    border-radius: 12px 12px 0 0;
}

.tarieven-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.tarieven-category {
    padding: 24px 32px;
    border-bottom: 1px solid #e2e8f0;
}

.tarieven-category:last-child {
    border-bottom: none;
}

.tarieven-category h4 {
    margin: 0 0 16px 0;
    font-size: 20px;
    font-weight: 700;
    color: #0ea5e9;
    padding-bottom: 8px;
    border-bottom: 2px solid #0ea5e9;
    display: inline-block;
}

.tarieven-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    font-size: 14px;
}

.tarieven-table thead {
    background: #f8fafc;
}

.tarieven-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #1e293b;
    border-bottom: 2px solid #e2e8f0;
}

.tarieven-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}

.tarieven-table tbody tr:hover {
    background: #f8fafc;
}

.tarieven-table th:first-child,
.tarieven-table td:first-child {
    width: 80px;
    font-weight: 600;
    color: #0ea5e9;
}

.tarieven-table th:last-child,
.tarieven-table td:last-child {
    width: 100px;
    text-align: right;
    font-weight: 600;
    color: #059669;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .tarieven-dropdown {
        padding: 10px;
    }
    
    .tarieven-content {
        margin-top: 20px;
        max-height: 95vh;
    }
    
    .tarieven-header {
        padding: 16px 20px;
    }
    
    .tarieven-header h3 {
        font-size: 20px;
    }
    
    .tarieven-category {
        padding: 16px 20px;
    }
    
    .tarieven-table {
        font-size: 12px;
    }
    
    .tarieven-table th,
    .tarieven-table td {
        padding: 8px 12px;
    }
    
    .tarieven-table th:first-child,
    .tarieven-table td:first-child {
        width: 60px;
    }
    
    .tarieven-table th:last-child,
    .tarieven-table td:last-child {
        width: 80px;
    }
	.circle {
    border-radius: 50%;
    width: 150px; /* Set desired width */
    height: 150px; /* Set desired height */
    overflow: hidden; /* Ensures the image fits within the circle */
}
	.circle img {
		max-width: 100%;
		height:auto;
		}

}

