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

@font-face {
  font-family: "Kalpurush";
  src: url("../assets/fonts/Kalpurush.ttf") format("truetype");
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    background: #f5f6fa;
    color: #222;
    line-height: 1.7;
    font-family: 'Kalpurush', 'Noto Serif Bengali', serif;
}


/* Breadcrumb */
.breadcrumb {
    max-width: 900px;
    margin: 20px auto;
    padding: 0 20px;
    font-size: 14px;
    color: #777;
}

.breadcrumb a {
    text-decoration: none;
    color: #444;
}

/* Header */
.about-header {
    text-align: center;
    padding: 60px 20px 40px;
}

.about-header h1 {
    font-size: 38px;
}

.about-header p {
    font-size: 18px;
    color: #666;
}

/* Container */
.about-container {
    max-width: 900px;
    margin: auto;
    padding: 0 20px 40px;
}

/* Section */
.about-section {
    background: #fff;
    padding: 28px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.about-section h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.about-section p {
    font-size: 18px;
}

.about-section li {
    font-size: 18px;
    margin-bottom: 8px;
}

/* Highlight */
.highlight {
    border-left: 5px solid #007517;
}

/* Links */
.about-section a {
    color: #7d5f1d;
    text-decoration: none;
}

.about-section a:hover {
    text-decoration: underline;
}

/* Contact */
.contact {
    text-align: center;
}

/* Tablet */
@media (max-width: 1000px) {
    .about-header h1 {
        font-size: 30px;
    }

    .about-section p,
    .about-section li {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .about-header h1 {
        font-size: 26px;
    }

    .about-section {
        padding: 20px;
    }

    .about-section p,
    .about-section li {
        font-size: 14px;
    }
}