/* Genel Stiller */
:root {
    --primary-color: #ff7700;
    --secondary-color: #ff9933;
    --accent-color: #ffcc00;
    --dark-color: #333333;
    --light-color: #f4f4f4;
    --white-color: #ffffff;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
}

.btn-danger {
    background-color: var(--danger-color);
    color: var(--white-color);
}

.btn-danger:hover {
    opacity: 0.9;
}

/* Header Stili */
header {
    background-color: var(--white-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo img {
    height: 50px;
}

.main-menu {
    display: none;
}

.main-menu li {
    position: relative;
    margin-left: 20px;
}

.main-menu li a {
    display: block;
    padding: 10px;
    font-weight: 500;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: var(--white-color);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    padding: 10px 15px;
}

.dropdown-menu li a:hover {
    background-color: var(--light-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Bölümü */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    text-align: center;
    padding: 100px 0;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Geri Sayım Bölümü */
.countdown-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.countdown-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.countdown-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.countdown-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    color: var(--white-color);
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.countdown-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-block span {
    display: block;
}

.time-block .days,
.time-block .hours,
.time-block .minutes,
.time-block .seconds {
    font-size: 2rem;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 10px;
    min-width: 50px;
}

.time-label {
    font-size: 0.8rem;
    margin-top: 5px;
}

.exam-date {
    font-size: 1rem;
    margin-top: 15px;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
}

/* Pomodoro Bölümü */
.pomodoro-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.pomodoro-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.pomodoro-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.pomodoro-timer {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.timer-display {
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.timer-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.timer-settings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.setting {
    display: flex;
    flex-direction: column;
}

.setting label {
    margin-bottom: 5px;
    font-weight: 500;
}

.setting input {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.pomodoro-info {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.pomodoro-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pomodoro-info p {
    margin-bottom: 20px;
}

.pomodoro-info ul {
    padding-left: 20px;
}

.pomodoro-info ul li {
    list-style-type: disc;
    margin-bottom: 5px;
}

/* Motivasyonel Alıntılar */
.quotes-section {
    padding: 60px 0;
    background-color: var(--white-color);
}

.quote-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 30px;
}

.quote-box i {
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.3;
}

.quote-box i.fa-quote-left {
    position: absolute;
    top: 0;
    left: 0;
}

.quote-box i.fa-quote-right {
    position: absolute;
    bottom: 0;
    right: 0;
}

#quote-text {
    font-size: 1.5rem;
    font-style: italic;
    margin: 20px 0;
}

#quote-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    flex: 2;
    justify-content: space-around;
}

.footer-menu {
    margin-bottom: 30px;
    min-width: 150px;
}

.footer-menu h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-menu ul li {
    margin-bottom: 10px;
}

.footer-menu ul li a {
    color: var(--light-color);
}

.footer-menu ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a {
    color: var(--white-color);
    margin-left: 15px;
    font-size: 1.2rem;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Puan Hesaplama Sayfası Stilleri */
.calculator-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.calculator-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.calculator-form {
    margin: 20px 0;
}

.form-group {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.form-group h3 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 18px;
}

.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.input-group label {
    width: 150px;
    font-weight: 500;
}

.input-group input {
    width: 80px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.button-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.primary-btn, .secondary-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.primary-btn {
    background-color: #3498db;
    color: white;
}

.primary-btn:hover {
    background-color: #2980b9;
}

.secondary-btn {
    background-color: #f1f1f1;
    color: #333;
}

.secondary-btn:hover {
    background-color: #e1e1e1;
}

.results-container {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.results-container.highlight {
    background-color: #e8f4fd;
}

.results-container h3 {
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

.result-label {
    font-weight: 500;
}

.result-value {
    font-weight: 600;
    color: #3498db;
}

@media (max-width: 768px) {
    .input-group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .input-group label {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .input-group input {
        width: 100%;
    }
    
    .button-group {
        flex-direction: column;
    }
}

/* Konu Dağılımı Sayfası Stilleri */
.content-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.content-block {
    flex: 1;
    min-width: 300px;
    margin-bottom: 30px;
}

.content-block h2 {
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.subject-distribution {
    margin-bottom: 40px;
}

.subject-distribution h3 {
    color: #444;
    margin: 25px 0 15px;
    font-size: 18px;
}

.distribution-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.distribution-table th {
    background-color: #f5f5f5;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #ddd;
}

.distribution-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.distribution-table tr:last-child td {
    border-bottom: none;
}

.yearly-changes {
    margin-top: 30px;
}

.note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

.info-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-box h3 {
    color: #3498db;
    margin: 20px 0 10px;
}

.info-box h3:first-child {
    margin-top: 0;
}

.info-box ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.info-box li {
    margin-bottom: 8px;
}

.sidebar {
    width: 300px;
}

.sidebar-widget {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-widget h3 {
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.sidebar-widget ul {
    padding-left: 0;
    list-style: none;
}

.sidebar-widget li {
    margin-bottom: 10px;
}

.sidebar-widget a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-widget a:hover {
    color: #2980b9;
}

.calendar-widget {
    margin-top: 15px;
}

.calendar-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

.calendar-item .date {
    font-weight: 600;
    color: #555;
}

.calendar-item .event {
    color: #3498db;
}

@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
}

/* Mobil cihazlar için tablo görünümü */
@media (max-width: 767px) {
    .distribution-table.mobile-view {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .distribution-table.mobile-view th,
    .distribution-table.mobile-view td {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .yearly-changes {
        overflow-x: auto;
    }
}

/* Logo Styles */
.logo img {
    max-height: 60px;
    width: auto;
}

/* Header Styles */
.main-header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Navigation Styles */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 15px;
    position: relative;
}

.nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.nav-link i {
    margin-left: 5px;
    font-size: 12px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    border-radius: 5px;
    padding: 10px 0;
    display: none;
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: var(--dark-color);
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-color);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
    position: relative;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
}

.hero-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* Motivation Gallery */
.motivation-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.motivation-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.motivation-item:hover {
    transform: translateY(-10px);
}

.motivation-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.quote {
    padding: 20px;
    background-color: #fff;
    text-align: center;
}

.quote p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 5px;
}

.quote span {
    font-size: 14px;
    opacity: 0.8;
}

/* Page Images */
.page-image {
    margin: 30px 0;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 10px 15px;
    font-size: 14px;
    text-align: center;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 0 0 100%;
    max-width: 350px;
    margin-bottom: 30px;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    justify-content: space-around;
}

.footer-menu {
    margin-bottom: 30px;
    min-width: 160px;
}

.footer-menu h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #4A6FFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #4A6FFF;
    color: #fff;
}

.btn-primary:hover {
    background-color: #3a5cd0;
}

.btn-secondary {
    background-color: #f8f9fa;
    color: #333;
}

.btn-secondary:hover {
    background-color: #e9ecef;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.main-content {
    flex: 1;
    min-width: 0;
}

.sidebar {
    width: 300px;
}

.content-block {
    margin-bottom: 40px;
}

.content-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.content-block p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #666;
}

/* Sidebar Widgets */
.sidebar-widget {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget li {
    margin-bottom: 10px;
}

.sidebar-widget a {
    color: #4A6FFF;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-widget a:hover {
    color: #3a5cd0;
}

/* Calendar Widget */
.calendar-widget {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.calendar-item {
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.calendar-item .date {
    font-weight: 600;
    color: #4A6FFF;
    margin-bottom: 5px;
}

.calendar-item .event {
    color: #666;
}

/* Info Box */
.info-box {
    background-color: #f0f7ff;
    border-left: 4px solid #4A6FFF;
    padding: 20px;
    border-radius: 0 5px 5px 0;
    margin: 30px 0;
}

.info-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.info-box ul {
    padding-left: 20px;
}

.info-box li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #666;
}

/* Search and Filter */
.search-filter {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.search-filter input[type="text"] {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.search-filter select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
}

/* Table Styles */
.table-container {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    background-color: #4A6FFF;
    color: #fff;
    padding: 15px;
    text-align: left;
}

.data-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.data-table tr:hover {
    background-color: #f0f7ff;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.pagination button {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination button:hover:not(:disabled) {
    background-color: #4A6FFF;
    color: #fff;
    border-color: #4A6FFF;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination span {
    font-size: 14px;
    color: #666;
}

/* Page Image Styles */
.page-image {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.page-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 15px;
    font-size: 14px;
    text-align: center;
}

/* Motivation Gallery Styles */
.motivation-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.motivation-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s;
}

.motivation-item:hover {
    transform: translateY(-5px);
}

.motivation-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.quote {
    padding: 15px;
    background-color: #fff;
}

.quote p {
    font-style: italic;
    margin-bottom: 5px;
    font-size: 16px;
}

.quote span {
    display: block;
    text-align: right;
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

/* Success Stories Styles */
.success-stories {
    margin: 30px 0;
}

.story {
    background-color: #f8f9fa;
    border-left: 4px solid #4A6FFF;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 0 5px 5px 0;
}

.story h3 {
    margin-bottom: 10px;
    color: #333;
}

.story p {
    font-style: italic;
    color: #555;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo .site-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
} 